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 ")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top