Never mind, I found a solution:
Dim intActiveButton as Integer
Dim blnAnimating as Boolean
Private Sub cmdButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
If intActiveButton = 1 Then
Exit Sub
Else
intActiveButton = 1
End If
If blnAnimating Then
Exit Sub
Else
Call AnimateText
End If
End Sub
Private Sub cmdButton2_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
If intActiveButton = 2 Then
Exit Sub
Else
intActiveButton = 2
End If
If blnAnimating Then
Exit Sub
Else
Call AnimateText
End If
End Sub
Private Sub AnimateText()
Dim i As Integer
Dim sngTimer As Single
Dim strMessage As String
Dim intAnimatingButton As Integer
StartAnimation:
blnAnimating = True
intAnimatingButton = intActiveButton
'Retrieve appropriate description string from array
strMessage = gstrDescriptions(intActiveButton)
'Generate description on screen
For i = 1 To Len(strMessage)
'Wait a fraction of a second to create the animation effect
sngTimer = Timer + 0.01
Do While sngTimer > Timer
DoEvents
Loop
'check to see if we're still animating the right button
If intAnimatingButton = intActiveButton Then
'add the next character to the caption
Me.lblDescription.Caption = Left(strMessage, i)
Else
'the active button has changed, we need to start over
GoTo StartAnimation
End If
Next i
blnAnimating = False
End Sub
Bookmarks