Private Sub Label1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Dim dblTop As Double
Dim dblLeft As Double
With Me.Label1
dblTop = .Top + .Height
dblLeft = .Left + .Width
End With
With Me.Shapes.AddCallout(msoCalloutOne, dblLeft, dblTop, 100, 30)
.Visible = msoTrue
With .TextFrame
.Characters.Text = "Yo ho ho and a bottle of rum!"
.HorizontalAlignment = xlHAlignCenter
.VerticalAlignment = xlVAlignCenter
End With
Application.Wait Now + TimeSerial(0, 0, 1)
.Delete
End With
End Sub