|
-
Sep 22nd, 2000, 08:14 AM
#1
Thread Starter
Fanatic Member
Hi
How I put in the textbox, few lines with vbCR&vbLf ?
-
Sep 22nd, 2000, 12:47 PM
#2
Fanatic Member
Assume you want a few empty lines at the begining of the text box.
Code:
Text1.Text = Text1.Text & VbCrLf
That will place one empty line at the begining of the text box.
Gl,
D!m
-
Sep 24th, 2000, 02:26 PM
#3
That actually places a new line at the END of the Textbox. At the beginning would be:
[code]
Text1=vbNewLine & Text1.Text
-
Sep 24th, 2000, 03:59 PM
#4
Or you can place it where ever the cursor position is.
Code:
Text1.SelText = vbCrLf
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
|