Resizing of Forms

Novice1

Registered User.
Local time
Today, 15:15
Joined
Mar 9, 2004
Messages
385
I'm working in a database where the forms are set at a certain size. When I move into another database, the forms resize to what they were in the previous database.

I want to lock the forms to a particular size, so they don't change every time I open a program.

I've tired ... DoCmd.RunCommand acCmdSizeToFitForm

I've tired .... MoveSize(Right, Down, Width, Height)

Any suggestions would be appreciated.
 
Set AutoResize = NO; FitToScreen = NO; Border Style =(Choose anything but Sizeable), Use MoveSize to set the Position from the Access Database Window's top left corner and the Height and Width of your form. You'll have to play with that until you get it the way you want it. Unfortunately not every monitor using the same resolution so there may be some optical difference between monitors. Also MoveSize uses twips as it's preferred unit.

You will have to set up some strategy in your form's on LOAD event that sets the form dimensions and sets the properties I mentioned.

This is ONE way, there may be others...
CHeers!
Goh
 
Last edited:

Users who are viewing this thread

Back
Top Bottom