Multiline Tooltip

  • Thread starter Thread starter Saber S
  • Start date Start date
* "Saber S said:
How can I make a multi line tooltip when I point to a button?

\\\
Me.ToolTip1.SetToolTip( _
Me.ListBox1, _
"Foo" & ControlChars.NewLine & _
"Bar" _
)
///
 
You can't do it from a property page (afaict)
In the for load (or main) add the code just as you would initialize any
string

Example:

Me.ToolTip1.SetToolTip(me.cboProcess, _
"Line1: Multi line tooltip " & vbCrLf & _

"Line2: Multi line tooltip " & vbCrLf & _

"Line3: Multi line tooltip ")
 
Back
Top