K Kueishiong Tu Nov 29, 2003 #1 I have a multi-line textbox. How do I cause a line break in the textbox?
P P. Alexander Schofield Nov 29, 2003 #2 Kueishiong said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... textBoxN.Text += "\r\n";
Kueishiong said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... textBoxN.Text += "\r\n";
M Maniaque Nov 29, 2003 #3 Kueishiong Tu said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... Kueishiong Tu said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... TextBox1.Text="Hi" & vbCrLf & "this will be on a new line"
Kueishiong Tu said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... Kueishiong Tu said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... TextBox1.Text="Hi" & vbCrLf & "this will be on a new line"
K Kueishiong Tu Nov 29, 2003 #4 -----Original Message----- textBoxN.Text += "\r\n"; Click to expand... It works!! Thank you very much for the help. Kueishiong Tu
-----Original Message----- textBoxN.Text += "\r\n"; Click to expand... It works!! Thank you very much for the help. Kueishiong Tu
K Kueishiong Tu Nov 29, 2003 #5 -----Original Message----- TextBox1.Text="Hi" & vbCrLf & "this will be on a new line" Click to expand... Thank you very much for the reply. What is the corresponding statement in VC++? Kueishiong Tu
-----Original Message----- TextBox1.Text="Hi" & vbCrLf & "this will be on a new line" Click to expand... Thank you very much for the reply. What is the corresponding statement in VC++? Kueishiong Tu
H Herfried K. Wagner [MVP] Nov 29, 2003 #6 * "Kueishiong Tu said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... Add 'Environment.NewLine'.
* "Kueishiong Tu said: I have a multi-line textbox. How do I cause a line break in the textbox? Click to expand... Add 'Environment.NewLine'.