Restore Window

T

tezza

I have designed an opening form of a certain size but when I run the Access
application, the form is maximized. At the top right of the screen is an icon
for Restore Window. When I click this, the form is displayed correctly. How
do I get the form to display as I want it?.
 
O

Ofer

Try and change the PopUp Property of the form to yes, the form should be open
in the size of the form design


Also check if you dont have in form load property the command
Docmd.Maximize

Also you can use the command
DoCmd.MoveSize
To specify the location and the size of the form
Put it on the load event of the form.
 
T

tezza

Thanks.
I looked in Macros and found an Autoexec containing Maximize. Have removed
Autoexec and window opens correctly now.
Thanks for your efforts.
Tezza
 
Top