forms periodically changing size

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......
 
R

Robin

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
 
D

Dirk Goldgar

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.
 
M

Marshall Barton

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top