Thanks for your assistance. I should have rechecked the docs. I don’t see my apps icon just blank space, but I guess on OSX I’ll need to use the only specified icon - caution - or build my own dialog.
I think this has something to do with the workflow on OS X. Forgive me if this sounds wrong, I’ve tried to word it politely, but on OS X, there simply isn’t a Yes / No dialog like windows. Apple encourage you to build dialogs like this in a different manor.
(dialog is showing default app icon, because I wrote this into a project without an app icon). Is more consistent with the Apple HIG. The altered code is below.
[code] Dim dlgq As New MessageDialog
dlgq.Title = “DBObjects”
dlgq.Message = “Would you like to create a Listbox subclass?”
dlgq.explanation = “A shiny new Listbox subclass, not only brightens your teeth, but cures your cigarette cravings also.”
dlgq.ActionButton.Caption = “Create”
dlgq.CancelButton.Visible = True
Dim btn As MessageDialogButton = dlgq.ShowModal[/code]