How to change width on form ?

SpookiePower

Registered User.
Local time
Today, 15:57
Joined
Sep 22, 2008
Messages
16
I have created a form that I can't seem to change the width on. Nothing happens when I try to change the width on the property sheet. This form should work as a popup form if it matters. Someone who can help ?

I'm using Access 2007.
 
Return the Form back to a Standard form.

Not Pop Up. Standard Boarders etc.

Adjust the size Test and Save when correct.

Then make the Form Pop Up if you wish.

If all else fails use the command MoveSize.

On Form open event

DoCmd.MoveSize 1000, 500, 500. 500. (Insert your own Values)
DoCmd.Restore
 
Nothing happens when you do what? Open the form after making the changes?
 
I can only get it to work, if I create a new form, and then as the first thing, I change the width. If I start to do other things to the form, then I'm not able to change the width later.

- Kim -
 
Did you try the Command MoveSize?

What else did you try.
 
No I did not try MoveSize. What I did, works just fine because I'm still in the beginning of my project. But if I later need to change the size, then I'll try MoveSize.

Thanks :)
 

Users who are viewing this thread

Back
Top Bottom