Full Screen Form

  • Thread starter Thread starter LeNor
  • Start date Start date
L

LeNor

I made a shortcut to my desktop for a form.Is there a way
to make the form in its maximized format when I
doubleclick on the shortcut icon which is on my
desktop.Thanks
 
If you want to maximize the Form in the Access Application window, use the
Form_Activate Event Procedure to run the statement:

DoCmd.Maximize

If you want to maximise the Access Application window, use:

DoCmd.RunCommand acCmdAppMaximize
 
I made a shortcut to my desktop for a form.Is there a way
to make the form in its maximized format when I
doubleclick on the shortcut icon which is on my
desktop.Thanks

Code the Form's Load event:
DoCmd.Maximize
 
Back
Top