textrichbox

starcraft

Well-known member
Joined
Jun 29, 2003
Messages
167
Location
Poway CA
how do i have line spaces in a textrichbox? Like this:
-----------------------------------------------------------
Hello

This is an exmple of what i wont to do.

Can you tell me How?

Thanks~
------------------------------------------------------------
PS. Also indents and all the spacing things u can do with text in like notepad or word.
 
Code:
TextBox1.AppendText("Line1" [b]& Environment.NewLine &[/b] "Line2")
The bit in bold is what actually separates the line.
 
Back
Top