Running MacOS 10.14.3
I have a routine using the SelectFolderDialog class. I call it with showmodal, but when the folder is chosen, and the action button is clicked, the folder is returned, but the dialog window does not close.
dim destination as FolderItem
dim dlg as SelectFolderDialog
dlg = new selectFolderDialog
dlg.Title = "Select Source Folder "
dlg.ActionButtonCaption ="Select"
dlg.PromptText = "Select the volume or folder to that contains images to be processed"
destination = dlg.ShowModal
What am I not doing here?