D DavidChambers Oct 24, 2008 #1 Where can I read simple instructions how to setup a switchboard? Maybe something that has some easy to follow examples.
Where can I read simple instructions how to setup a switchboard? Maybe something that has some easy to follow examples.
J Jeanette Cunningham Oct 24, 2008 #2 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
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