I'm reading text out of a text file and I want to put it into a ToolTip control with multiple lines. I have control over the text file, so I can format it anyway I want. The text file would look something like this:
Code:
line 1 vbcrlf line 2
I want to read it in a line at a time and assign it to the tooltip. Something like:
VB Code:
Dim str as String = sr.Readline
ToolTip1.SetToolTip(TextBox1, str)
Then when the cursor is on TextBox1, I want it to show
rather than what it looks like in the textfile. I guess I need some kind of escape sequence, but I'm not sure how to do it.