Switchboards

  • Thread starter Thread starter DavidChambers
  • Start date Start date
D

DavidChambers

Where can I read simple instructions how to setup a switchboard? Maybe
something that has some easy to follow examples.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Switchboard error message 1
re Switchboard 1
Switchboard in Access 2007 1
SWITCHBOARD 1
Switchboard Questions 2
switchboard problem 4
Logical Statement on a SwitchBoard Menu. 7
Logical statement on a Switchboard 2

Back
Top