Not an animated gif BUT!! (there's always a but isn't there?) Say you had a 3 frame animated gif, take each frame and place it as a separate picture on the form and make sure they are the same size and on the same coordinates. Let's say the controls are named ole1, ole2, ole3; you could set the Timer Interval to say 500 and make a little code that fires in the Timer event that looks like so:
[tt]
If ole1.Visible = True Then
ole2.Visible = True
ole1.Visible = False
Else
If ole2.Visible = True Then
ole3.Visible = True
ole2.Visible = False
Else
ole1.Visible = True
ole3.Visible = False
End If
End If
[/tt]
Voila! Disney couldn't have done it any better! ;-)
Joe Miller
joe.miller@flotech.net