Lebans animatedgifplayer problem...

  • Thread starter Thread starter Ryo
  • Start date Start date
R

Ryo

Hello !

I use the lebans animated gif player
(http://www.lebans.com/animatedgifplayer.htm), I have registered the
'AnimatedGif.ocx' in the registry, I have create an Animated Gif Ctl Ver 2.0
control, and I set the gif file. I see the gif in the form but not animated.
I don't understand the problem, someone can help ?
Thanks in advance.
 
You need to explicitly Start and Stop the player.

Private Sub Stop_Click()
Me.ctlAnimGif.StopGif
End Sub

Private Sub Start_Click()
Me.ctlAnimGif.StartTimer
End Sub


THis control was written for VB and the source archive includes a sample
VB project that shows how to use the control. You can use the VB IDE
Object Browser to look at all of the exposed props/methods of the
control.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
Back
Top