View Full Version : Open form maximized


robert693
05-09-2001, 05:47 AM
This is a basic question. I want to know how to create a form that will open maximized every time.

mcreedie
05-09-2001, 05:55 AM
I don't know if this will help but whenever i want this to happen i create a macro to maximise then with the form open in design view attach the macro on mouse move.

so when the user moves a mouse the from maximises.

Rob

KevinM
05-09-2001, 06:21 AM
No, a much simply way is to put...
DoCmd.Maximize
On the form's OnOpen event procedure

HTH