vote up 1 vote down star

when i try to dynamicly change the text of a textbox, if there is a line break, \r\n , all the text after the line break disappears including the line break sign. only single lines are updated correctly. the textbox is set to MultiLine TextMode.

what could cause such behaviour ?

flag

1 Answer

vote up 0 vote down

You have to use vbCrLf for new lines.

Example :

TextBox1.Text = "First Line " & vbCrLf & "Second Line"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.