I need to output to a richtextbox. The problem is that when I use:
Puts all the text on one line. And:Code:rtbMain.text = "First Line" rtbMain.text = rtbMain.Text & "Second Line"
Overwrites the the first.Code:rtbMain.text = "Line One" rtbMain.text = "Line two"
So I need to know how to create a newline to output text to.
Or atleast simulate the enter key being pressed so I can get to the next line.




Reply With Quote