Opening Switchboard

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a switchboard and made a shortcut on my desktop so it will
open when double clicked on. I would like it to open in the maximized or full
screen view. I know this can be done but not sure how to do it anymore. Thanks
 
Add a DoCmd.Maximize statement to the Form's Activate event:

Private Sub Form_Activate()
DoCmd.Maximize
End Sub
 
Thank you very much

Jeff Conrad said:
Add a DoCmd.Maximize statement to the Form's Activate event:

Private Sub Form_Activate()
DoCmd.Maximize
End Sub
 

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
switchboard problem 4
Open datasheet view from switchboard 2
Switchboard Minimized 4
Opening switchboard in full view 2
Switchboard Questions 2
Switchboard manager 4
OPEN DATABASE 6

Back
Top