How to play a .swf(flash) file in vb 6.0
How to play a .swf(flash) file in vb 6.0
Rate How to play a .swf(flash) file in vb 6.0
(1(1 Vote))
Private Sub Form_Load()
ShockwaveFlash1.Width = Screen.Width
ShockwaveFlash1.Height = Screen.Height
ShockwaveFlash1.Loop = True
ShockwaveFlash1.Playing = True
ShockwaveFlash1.Movie = "path of .swf file"
End Sub
----------------------------------------------------
Private Sub Timer1_Timer()
If Timer1.Interval = 2000 Then: Unload Form1
Else
Timer1.Interval = imer1.Interval + 1000
End Sub
How to play a .swf(flash) file in vb 6.0 Comments
No comments yet — be the first to post one!
Post a Comment