Switchboard Open on Startup

Chewstar

New member
Local time
Today, 03:13
Joined
Dec 14, 2005
Messages
6
Is there i way so that when you open up your database you can get your Switchboard to open up??? is there a simple box to click to make it do this that i am missing or is it some VB code?

Help please thanks alot
l33tskyline aka Chewstar
 
Search the Access help files or the forum for the StartUp options.
 
ok thanks i will check it out. i thought there would be something simple i missed :)
 
Open Switchboard

Open Switchboard inn edit mode
Click on VB icon

Look for :-

Private Sub Form_Open(Cancel As Integer)
' Minimize the database window and initialize the form.
DoCmd.Maximize
' Move to the switchboard page that is marked as the default.
Me.Filter = "[ItemNumber] = 0 AND [Argument] = 'Default' "
Me.FilterOn = True

End Sub

You only have to enter "DoCmd.Maximize"
 
racdata, I think the question was how to get the switchboard to open on startup, not how to open the switchboard maximized.

Go to Tools/Startup to see the options that can be set for startup.
 

Users who are viewing this thread

Back
Top Bottom