Right, I just got vb on the weekend and i've been playing around with it.

I want to make a really basic chat program.

I'm using 2 text boxes on the form (text1 & text2)

The text I type into text2 gets copied into text1 with a username added to it.

Anyhow, the problem is, when I send the second sentence I end up with;

<catcalls>hello!<catcalls>why!?!?<catcalls> F**K THIS!!!

instead of;
<catcalls> Hi!
<catcalls> Finally,
<catcalls> It works...

Y'see, what i'm missing is NEW LINE

So, how do I make text1 go to a new line each time?

I want something I can tag on the end of

text1.text = text2.text + /n 'as the new line

I tried /n but it didnt work. What's the code for new line?