Domino Code Fragment

Code Name*
How to Open a Navigator in Notes R4 via LotusScript
Date*
06/28/2025
Source (or email address if you prefer)*
[email protected]
IP address:.172.69.58.78
Description*
How to Open a Navigator in Notes R4 via LotusScript
Product Release:
Type*
LotusScript
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
You can call the OpenDatabase method of the NotesUIWorkspace and use a navigator in place
of the view parameter. This enables you to open a navigator via a script. If the navigator
is associated with a view, this will also allow controlled navigation to a view.

Sample Code:

Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Call workspace.OpenDatabase ( "SERVER1", "DBName", "Nav1","Current", False, False )
End Sub