Opening Switchboard

S

syssupspe

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
 
J

Jeff Conrad

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

Private Sub Form_Activate()
DoCmd.Maximize
End Sub
 
Top