View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Web Browser Control for Animation.

As far as I know, only a GIF supports animation. A bitmap does not.


here is some past discussion on the topic:

http://tinyurl.com/8tr64

--
Regards,
Tom Ogilvy

"ExcelMonkey" wrote in message
...
I have put a web browser control on a userform. I want to animate a

graphic
with it. I can't seem to get the grahpic to animate. I trigger the

entire
thing off a button click event. Am I triggering it off the right event?
Thanks


Private Sub CommandButton1_Click()
Call Thing
End Sub

Sub Thing()
UserForm1.Show
End Sub

Private Sub UserForm1_Activate()
UserForm1.WebBrowser1.Navigate = "C:\Documents and
Settings\Me\Desktop\Graphic.bmp"
End Sub