Full Screen Form

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
 
V

Van T. Dinh

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
 
F

fredg

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
 
Top