Maximising Access to Screen

C

Chase

I can increase a Form to fill the Access Window with "DoCmd.Maximise". In VBA
How do I maximise the Access Window to fill the screen?
 
D

Dirk Goldgar

Chase said:
I can increase a Form to fill the Access Window with
"DoCmd.Maximise". In VBA How do I maximise the Access Window to fill
the screen?

Application.RunCommand acCmdAppMaximize
 
Top