add a new line in a multiline textbox

thexero

Active member
Joined
Jan 27, 2007
Messages
26
Programming Experience
3-5
hi

i'm doing a programming unit at college

an we gotta write someones address in a multi line text box, how can i insert a new line into it by using the code editor?

the gui isn't suitable for what i am trying to do

cheers
 
Textbox.Text &= Environment.NewLine()

'Environment.NewLine() will become a friend of yours over time
 
Back
Top