Text Box Does NOT Grow

  • Thread starter Thread starter Chegu Tom
  • Start date Start date
C

Chegu Tom

I have serveral text boxes on my form that are populated by code. sometimes
there is more text than fits in the box. I would like the box to grow
vertically to accomadate the text

I have set the 'can grow' property to 'Yes' yet they do not grow (as report
controls do with the same treatment)

Is there something else I should be doing to enable that action or am I
expecting too much from a form?

Tom
 
I have serveral text boxes on my form that are populated by code.
If they are being populated after the form is opened then try including
Requery in your code.
 
Chegu Tom said:
I have serveral text boxes on my form that are populated by code.
sometimes there is more text than fits in the box. I would like the box to
grow vertically to accomadate the text

I have set the 'can grow' property to 'Yes' yet they do not grow (as
report controls do with the same treatment)

Is there something else I should be doing to enable that action or am I
expecting too much from a form?


You're expecting too much from a form in form view. For forms, the CanGrow
property only applies when the form is printed. However, see Stephen
Lebans' solution here:

http://www.lebans.com/cangrow.htm
 
Back
Top