Hi David,
You will need to change the name of the switchboard itself (not the form) -
You need to do this in the switchboard manager (Tools> Add-ins> Switchboard
Manager - in access 97)
The Switchboard form's Current event sets the caption of each
switchboard page.
Private Sub Form_Current()
' Update the caption and fill in the list of options.
Me.Caption = Nz(Me![ItemText], "")
FillOptions
End Sub
To change the caption of the first page, using the switchboard editor
change (Edit) the first switchboard page name (Main Switchboard) to
whatever you wish.
To change the caption of all pages to the same, simply use:
Me.Caption = "this is the caption."