How can I use multiline ToolTipText?
Printable View
How can I use multiline ToolTipText?
Easy:
In the properties of the object you refer to, change ToolTipText to " ".
Then insert this:
But you will have to ask someone else for the thing with those to chars that aren't suppose to be there.Code:Private Sub Form_Load()
Dim TTT As String
TTT = "Line 1 of text" & vbNewLine & "Line 2 of text"
Text1.ToolTipText = TTT
End Sub
This is the code basicly.
Sorry for now fully do the code...
x