Access 2003 Keep database window maximized

F

FrankSpokane

I have an mdb that come up in a full screen menu called by an autoexec macro.

I want to keep this menu covering the screen.

There are several menu selection buttons that run reports, and the report
window can be resized by the user viewing it - zoom or not zoom. After the
report it run, the menu comes up again, but not always in full screen mode.

How can I reopen this menu in maximized mode after someone runs a report?

I want to keep the background Access objects hidden so nobody gets the idea
to snoop around.

The only exit button on the menu Quits the application entirely.

Thanks.
 
O

Ofer

If you want a certain form (menu) maximize, put on the OnActivate event of
the form
docmd.Maximize

that way every time the form will get the focus it will maximize.
 
F

FrankSpokane

That's great - thanks Much !!!

Ofer said:
If you want a certain form (menu) maximize, put on the OnActivate event of
the form
docmd.Maximize

that way every time the form will get the focus it will maximize.
 
Top