Domino Code Fragment

Code Name*
Retrieving Specific Help Document
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.18.224.59.231
Description*
While in a document, there may be a need for additional help. This action uses @Picklist to pull up the help view, the user selects which help document is needed, then brings up the actual document. A simple Save & Return action button on the help doc gets the user back to their original document. Need a sorted view using a temporary variable assigned to @Picklist as the key. Found in the Worldwide Coutry Registration database.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
REM;
"Let\'s get some help by pressing this action to bring up a view of the help file";
choice := @PickList([Custom]; ""; "Help"; "Detailed Help"; "Please select a help document to review"; 1);
@Command([OpenView]; "Help"; choice; 1);
REM;
"Below places the doc in read mode";
@Command([EditDocument]; "0");
REM;
"Below closes that dam
n view and just leaves the doc open";
@Command([OpenView]; "Help");

@Command([FileCloseWindow])