H Herfried K. Wagner [MVP] Dec 11, 2003 #3 * "Saber S said: How can I make a multi line tooltip when I point to a button? Click to expand... \\\ Me.ToolTip1.SetToolTip( _ Me.ListBox1, _ "Foo" & ControlChars.NewLine & _ "Bar" _ ) ///
* "Saber S said: How can I make a multi line tooltip when I point to a button? Click to expand... \\\ Me.ToolTip1.SetToolTip( _ Me.ListBox1, _ "Foo" & ControlChars.NewLine & _ "Bar" _ ) ///
M Michael Fitzpatrick Dec 12, 2003 #5 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 ")
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 ")