Hi Everyone,
What is the best way to allow a user to select a folder path in domino?
Help would be greatly appreciated.
Regards Stina
Hi Everyone,
What is the best way to allow a user to select a folder path in domino?
Help would be greatly appreciated.
Regards Stina
Check the documentation for NotesUIWorkspace.OpenFileDialog(), this function displays a file dialog with Lotus Script.
From the Help docs:
stringArray = notesUIWorkspace.OpenFileDialog( multipleSelection , [title$] , [filters$] , [initialDirectory$] , [initialFile$] )
Dim ws As New NotesUIWorkspace
filenames = ws.OpenFileDialog(True, "Select files to be deleted", "All Files|*.*", "c:\work")
I think the folder dialog can be obtained only through Win32 API and there is no equivalent in any notes classes. Perhaps a JAVA SWING dialog from Java agent.