Problem whith System.Windows.Forms.Keys.Return
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
-
Im trying to insert a Return in my textBox but all I´m end upp whit i a ugly "13" -------------------- for i = 0 to ubound(aryInfoText) txtInfo.AppendText(aryInfoText(i) & " " & System.Windows.Forms.Keys.Return) next -------------------- X| Baaaa
Thats because you are inserting 13 into the textbox. Try Chr(13).