views:

17

answers:

3

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

+2  A: 

Check the documentation for NotesUIWorkspace.OpenFileDialog(), this function displays a file dialog with Lotus Script.

cwaidner
A: 

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")
Ed Schembor
A: 

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.

Mihi