What formatting characters do I put in a string of text to make the characters bold and increase the font size when it’s put in a RitchTextBox.
Example:
Dim sTemp As String
sTemp = "This is some sample data " & vbCrLf
sTemp = sTemp & "Make this line Bold and Font Size 13" & vbCrLf
sTemp = sTemp & "Return to font size 10 and not bold "
Open in new window