I have a text box in a program I'm writing that I need to become bigger so a user who's inputting text can see what they are doing.
Stats on the text box:
With Text1
.Text=""
.Scrollbars=2 'vertical
.Multiline=True
End With
Once the text reaches the end and wraps I want the Text1.Height to go up for visibility. How can I do this?
If ???? Then
Text1.Height = 300
End If
Later in Text1_LostFocus I'll change the height back...
But what would be the conditions for the program to realize that the text has wrapped?
PS I don't want to do string manipulation or font changing.. Thank you for your time!
2007-10-02
12:32:43
·
3 answers
·
asked by
neofrog46307
2
in
Computers & Internet
➔ Programming & Design