Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Allow a user to select a folder path in Lotus Notes

What is the best way to allow a user to select a folder path in Notes?

like image 441
Stina Avatar asked Mar 20 '26 19:03

Stina


1 Answers

I use this undocumented @formula or Lotus Script function for years and love it:

@Prompt(14; ""; "");

Allows user to select a filesystem folder. Similar to, but not the same, as...

@Prompt([LocalBrowse]; ""; "");

This can also be used via

Dim uiws As New NotesUIWorkspace
folder = uiws.Prompt(14, {}, {})

Credits go to: http://news4notes.com/web/dokumente/notes_undocumented_formula.html

Contains a list of nice undocumented functions.

like image 135
Alex Graschitz Avatar answered Mar 25 '26 01:03

Alex Graschitz



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!