Domino Code Fragment

Code Name*
How to Open a Navigator in Notes R4 via LotusScript
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.129.247.196
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