RichTextBox

  • Thread starter Thread starter Bruce F
  • Start date Start date
B

Bruce F

From a newbie...
I want to load text into a RichTextBox one line at a time so that I can
change the font color of each line depending on conditions.

1. How to load line by line?

2. How to change font color as each line loads?
 
With rtbTextbox
.Text = ""
.SelFontName = "Arial"
.SelColor = vbBlack
.SelBold = True
.SelText = "Web Enabled - " & vbcrlf
.SelFontName = "Times New Roman"
.SelColor = vbRed
.SelBold = False
.SelText = "Not Connected"
'. etc
End With
 
Back
Top