I wantto stopthecurrentfile,andthenI runanother file soasnottobook aplaceinthememory
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
AxShockwaveFlash1.Visible = True
AxShockwaveFlash1.LoadMovie(0, Application.StartupPath & "\1.swf")
AxShockwaveFlash1.Play()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
AxShockwaveFlash1.StopPlay()
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
AxShockwaveFlash1.Stop()
AxShockwaveFlash1.Hide()
End Sub