Web Browser Control for Animation.
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
|