Examples: OpenByReplicaID method

This script attempts to open a database on the server Moscow.

Dim db As New NotesDatabase( "", "" )
If db.OpenByReplicaID( "Moscow", "85255FA900747B84" ) Then
  Print( db.Title & " was successfully opened" )
Else
  Print( "Unable to open database" )
End If