Domino Code Fragment

Code Name*
Display Help Dialog Box
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.15.193.45
Description*
Displays a Help Form, use with button and hotspots
Type*
LotusScript
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
'You can use a Notes formula for this but it includes a "Cancel" button.. '@DialogBox("HelpDropDown"; [AutoVertFit] :[AutoHorzFit]; "How to create the action bar drop down");@All
Files/Graphics attachments (if applicable): Code:
Sub Click(Source As Navigator)
   
    Dim workspace As New NotesUIWorkspace
    Call workspace.DialogBox   ( "Help", True, True, True, True, _
    True, True, "Help" )
   
End Sub