maximize form on startup

  • Thread starter Thread starter JohnW
  • Start date Start date
J

JohnW

I am a little embarassed to ask this, but here goes...

I would like a form to be maximised to full screen on startup, so the
operator doesnt have to perform this function.
Also, remove from the operator the minimise option so they cannot see
"behind the scenes"

Thanks
 
You probably want a popup form it its purpose it to hide everything. In the
Open event write an event procedure:

DoCmd.Maximize

You can specify which forms can be minimized or maximized in the form's
property sheet.
 
Back
Top