Topics

04 Documentation updates
Designer
NotesDatabase Forms property example

The following example has been updated.

Example: Forms property
This example displays the names of all the forms in the current database

Sub Initialize
    Dim session As New NotesSession
    Dim db As NotesDatabase
    Set db = session.CurrentDatabase
    Forall form In db.Forms
       Messagebox form.Name
    End Forall
End Sub