I ingrid Registered User. Local time Today, 22:00 Joined Apr 10, 2003 Messages 42 Apr 10, 2003 #1 I have a form (defaultview=1). I want to set the height of a textbox dynamicly deping on the length of the string that has to be shown. Can anyone tell me how to do that? Thanks, in advance.
I have a form (defaultview=1). I want to set the height of a textbox dynamicly deping on the length of the string that has to be shown. Can anyone tell me how to do that? Thanks, in advance.
Autoeng Why me? Local time Today, 17:00 Joined Aug 13, 2002 Messages 1,302 Apr 10, 2003 #2 Search for "text box can grow".
I ingrid Registered User. Local time Today, 22:00 Joined Apr 10, 2003 Messages 42 Apr 10, 2003 #3 I did, and I found some information but not. I did this: Private Sub Form_Load() Tekst0.CanGrow = True End Sub That gives me error 2448
I did, and I found some information but not. I did this: Private Sub Form_Load() Tekst0.CanGrow = True End Sub That gives me error 2448
Autoeng Why me? Local time Today, 17:00 Joined Aug 13, 2002 Messages 1,302 Apr 10, 2003 #4 From Access Help... These properties affect 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. Click to expand... So, you cannot use Can Grow in a Form View. http://www.access-programmers.co.uk...=&threadid=4162&highlight=form+field+can+grow Last edited: Apr 10, 2003
From Access Help... These properties affect 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. Click to expand... So, you cannot use Can Grow in a Form View. http://www.access-programmers.co.uk...=&threadid=4162&highlight=form+field+can+grow