Domino Code Fragment

Code Name*
Display Help Dialog Box
Date*
06/28/2025
Source (or email address if you prefer)*
[email protected]
IP address:.172.69.59.168
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