forms periodically changing size

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a database with several forms. I've found that the forms will
perioidically change size on me. I would like to have the forms the same
size time after time after time.

My guess is it is something I am doing but is there a property or something
where I can keep the forms the same size every time they open.

Thanks for the help......
 
You can use the form's InsideHeight and InsideWidth properties to set the
form size (in twips), so that the form is always the same size when opened.

Me.InsideHeight = nnnn
Me.InsideWidth = nnnnn

R
 
JT said:
I have a database with several forms. I've found that the forms will
perioidically change size on me. I would like to have the forms the
same size time after time after time.

My guess is it is something I am doing but is there a property or
something where I can keep the forms the same size every time they
open.

Thanks for the help......

Unless you set the form's AutoResize property to Yes, it will generally
keep the window size it was last saved with.
 
JT said:
I have a database with several forms. I've found that the forms will
perioidically change size on me. I would like to have the forms the same
size time after time after time.

My guess is it is something I am doing but is there a property or something
where I can keep the forms the same size every time they open.


Try setting the AutoResize property to Yes. If it's set to
No, the form retains whatever size it had the last time you
saved the form's design.
 
Back
Top