Hi All,
I'm having issues creating a multi-line tooltip in excel, this is the code I have so far:
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 :)