Form size

endri81

Registered User.
Local time
Today, 05:56
Joined
Jul 5, 2010
Messages
121
Hi
I made my main form start automatically when I open the file.
It contains 3 buttons so I want it to be smaller but when it opens it fits all the access page and I cannot make it different.
Any suggestions?
 
Use the following code in the forms Form_Open event. Adjust the twips numbers to meet your needs.

Code:
DoCmd.Restore
InsideHeight = 3800
InsideWidth = 7600

If you are using Access 2007 or newer you have to turn off the Tabbed Documents option and use the Overlapping Windows option.
 

Users who are viewing this thread

Back
Top Bottom