Can Grow and Can Shrink Question

G

Guest

Why does the Can Grow and Can Shrink properties of a text field on a form not
work, I have tried this on a report and it works fine but not on my input
form, I am trying to have the text field the same length with enough depth to
hold two lines of test, but when the user types more in, the depth expands to
accomadate this, can anyone help please.

Thanks in anticipation

Joe
 
D

Douglas J. Steele

It doesn't work on forms because it wasn't designed to work on forms.

Nothing prevents the user from typing more data than can appear in the two
lines you're displaying. The user also has the option of using Shift-F2 to
open the "zoom" box which will let him/her see more of the input. (You can
also open the zoom box programmatically using DoCmd.RunCommand
acCmdZoomBox)

Since forms are not intended to be printed, I can't see that those
properties not working is a hardship.
 
K

Keith Wilby

Joe Coulter said:
Why does the Can Grow and Can Shrink properties of a text field on a form
not
work, I have tried this on a report and it works fine but not on my input
form, I am trying to have the text field the same length with enough depth
to
hold two lines of test, but when the user types more in, the depth expands
to
accomadate this, can anyone help please.

Thanks in anticipation

Hi Joe.

From the help:

"This property affects the display of form sections and controls only when
the form is printed or previewed, not when the form is displayed in Form
view, Datasheet view, or Design view. "

Keith.
www.keithwilby.com
 

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

Similar Threads


Top