Lotus Software logo
IBM Lotus Domino Designer 8.5
  Versions 8.5 and 8.5.1






Examples: Name property

This script displays the names of all the forms in a database.

Dim session As New NotesSession

Dim db As NotesDatabase
Set db = session.CurrentDatabase
formCount = 0
msgString = ""
Forall form In db.Forms
formCount = formCount + 1
msgString = msgString & Chr(10) & " " & form.Name
End Forall
Messagebox "This database has " & _
formCount & " forms:" & msgString
Related topics
Name property




Library | Support | Terms of use |

Last updated: Monday, October 5, 2009