Access 2007 form in full screen view

E

Elena

I have a form in Access 2007 that multiple users will be adding data to and
would like them to view it in full screen view. How do I make this work?
 
B

BrerGoose

Do you mean you want it maximized ? Then use:
DoCmd.RunCommand acCmdAppRestore (in startup function or macro)
DoCmd.Maximize (in form onOpen)
 
Top