I set up a custom open dialog in a Xojo 2013 r3.3 Desktop app on Mac OS 10.12.2 using the following code example:
[code]Dim dlg As New OpenDialog
dlg.InitialDirectory = SpecialFolder.Documents
dlg.Title = “Select a MIF file”
dlg.Filter = FileTypes1.pdf
Dim f As FolderItem
f = dlg.ShowModal
If f <> Nil Then
’ Proceed normally
Else
’ User Cancelled
End If[/code]
The dialog box works correctly but there is no title and the navigation bar on the left side of most finder windows is not there either. I’m guessing there should be a title if there is a parameter for that. Did I miss something?