|
-
Aug 13th, 2000, 04:37 PM
#1
Thread Starter
Junior Member
ok i need to know how to display text in a text box on multiple lines by useing vb code and not the property dialog on the side?
-
Aug 13th, 2000, 04:48 PM
#2
Frenzied Member
Use
Code:
Text1.Multiline = True
To make it multi line and
Code:
Text1.Multiline = False
to make it single line
-
Aug 13th, 2000, 05:13 PM
#3
you cant do that, MultiLine is a read only property at runtime.
-
Aug 13th, 2000, 05:57 PM
#4
Frenzied Member
oh god, of course it is, you need 2 textboxes then, make one visible and the other invisible, then swap their visible properties around, make sure you put some code in the CHange events to keep the 2 textbox texts the same.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|