Form Resizing

  • Thread starter Thread starter trekgoes2malaysia
  • Start date Start date
T

trekgoes2malaysia

How can I have a form open in exactly the same sizing as it was last
saved in. I have set the forms format property "Auto Resize" to No
but I have noticed that the form still opens slightly smaller than how
I set it initially. How can I prevent this from happening??? I am
using Access 2003.

Patrick
 
I'd try turning on AutoResize. If that doesn't work, try using:

DoCmd.MoveSize Right, Down, Width, Height

to place and size the form. Measurements are in twips (1440 twips to the
inch)
 
Back
Top