Switchboards

D

DavidChambers

Where can I read simple instructions how to setup a switchboard? Maybe
something that has some easy to follow examples.
 
J

Jeanette Cunningham

Hi David,
I prefer to use switchboards that I create myself instead of using the built
in access switchboard manager.

I create a new blank form.
I put a button on it for each form I want to open.
I code a button something like this:

Private Sub cmdReports_Click()
DoCmd.OpenForm "frmReportsMenu"
DoCmd.Close acForm, Me.Name
End Sub

The code above opens a form that shows a list of reports, and closes the
main switchboard.


Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Top