Switchboard Problem

Jethro

New member
Local time
Yesterday, 23:23
Joined
Feb 10, 2008
Messages
9
Im having a problem with the switchboard. I tried to create a second switchboard. The main one has my data entry keys and I wanted to create a separate one for my reports. When I click on the reports button on the main page it opens a blank switchboard. If I make the reports switchboard the default one, it works fine on its own. Any idea what Im doing wrong?
Thanks
 
It's most probably a typo, check the doCmd code behind your button, or even try this code
(obviously replacing the names for your forms)

Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "frmThaYouWantToOpen"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Forms.Item("frmThatYouWantToClose").Visible = False


hope this helps
 
Last edited:
The question is, how did you try to create a second switchboard. The switchboard manager does that. All you have to do is click ADD.
 

Users who are viewing this thread

Back
Top Bottom