Windows file selection interface

I had a question directed to me a few months back and I answered incorrectly because I was not aware of a new feature in R5. I have been asked this question by many people and had never seen the answer -- so hopefully this will help some people who don't know how to access the Windows file open dialog that gives your users the familiar look and feel of windows folder navigation.

stringarray = notesUIWorkspace.OpenFileDialog( multipleSelection [, title$ 
[, filters$ [, initialDirectory$ [, initialFile$
]]]] )

This is a clipping from the Domino R5 Designer help file.

dim fn as variable 'to capture array
dim ws as new NotesUIWorkspace

fn = ws.OpenFileDialog( False, "File selection", "" )

Now you can treat fn as an array of filenames that the user selected.
 





This was first published in January 2002

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.