I have some text in a text box and i wish to bring he cursor down a couple of lines after the user has entered the text. have tried several ideas. Anyone know why this is not working.
Thanks
Printable View
I have some text in a text box and i wish to bring he cursor down a couple of lines after the user has entered the text. have tried several ideas. Anyone know why this is not working.
Thanks
Try VbCrLf
have fun! :)Code:text1.Text = "hah" & VbCrLf & "multi" & VbCrLf "line!"
'Set the text1.multiline to True
I believe vbNewLine works too, but I never use it.