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
 

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


Back
Top