Quantcast
Viewing all articles
Browse latest Browse all 2341

New Post: Multi-line Tooltip (VBA)

Hi All,

I'm having issues creating a multi-line tooltip in excel, this is the code I have so far:
Private Sub Map1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Long, ByVal Y As Long)
Dim ttstr As String

ttstr = "Line1" & vbCrLf & "Line2"
Map1.ShowToolTip ttstr, 1000

End Sub
Any help would be appreciated :)

Viewing all articles
Browse latest Browse all 2341

Trending Articles