open file to switchboard

G

Guest

I'd like to have my Access file open automatically to the switchboard. When I
go to Tools, Startup on the menu bar it allows me to set the start up to
switchboard, but the main database page opens as well. Do I have to create a
macro to open the file to the switchboard; then minimize any other windows?
And, if so, how do I do this? Any help/suggestions offered are greatly
appreciated. Thanks :)
 
G

Guest

You can either hide the database window by unchecking the 'Display Database
Window' checkbox in the start-up dialogue, or you can minimize it at start-up
by putting the following in the switchboard form's Open event procedure:

DoCmd.SelectObject,acForm,Me.Name,True
DCmd.Minimize

The first line selects the form in the database window. The second then
minimizes the window.

Ken Sheridan
Stafford, England
 
G

Guest

Thanks for your reply. However, where do I find the switchboard form's Open
event procedure? Sorry, I'm kinda new to Access.
 

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

Switchboard Minimized 4
Access Switchboard error message 1
re Switchboard 1
Switchboard problem 2
open file to switchboard... 1
Controlling another switchboard 2
I've lost my Switchboard ! 3
Switchboard maxed 6

Top