E endri81 Registered User. Local time Today, 05:56 Joined Jul 5, 2010 Messages 121 Aug 4, 2010 #1 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?
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?
ghudson Registered User. Local time Today, 08:56 Joined Jun 8, 2002 Messages 6,194 Aug 4, 2010 #2 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.
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.