LOTUSSCRIPT/COM/OLE CLASSES


Examples: Reload method
This button script reloads the current front-end document from the corresponding back-end document.

Sub Click(Source As Button)
 Dim workspace As New NotesUIWorkspace
 Dim uidoc As NotesUIDocument
 Set uidoc = workspace.CurrentDocument
 If Not ( uidoc.IsNewDoc ) Then
   Call uidoc.Reload
 End If
End Sub

See Also