Window Maximization Report Window

B

Brad Niemiec

I am having a problem getting the report window to open
maximized as either a shortcut on my desktop or from the
general database screen? Any suggestions?
 
R

Rick Brandt

Brad Niemiec said:
I am having a problem getting the report window to open
maximized as either a shortcut on my desktop or from the
general database screen? Any suggestions?

In the Open event of your reports...

DoCmd.Maximize

You might then also want this in the Close event...

DoCmd.Restore
 
Top