With the help of this forum members and google search i've done the following part
- Imports AxShockwaveFlashObjects
-
Public Class Form1
-
-
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
-
Dim axShockwaveFlash As New AxShockwaveFlash
-
axShockwaveFlash.Location = New System.Drawing.Point(10, 10)
-
-
Me.Controls.Add(axShockwaveFlash)
-
'me.Show(); Avoids InvalidActiveXStateException.
-
-
axShockwaveFlash.Movie = "D:\\movie.swf"
-
'it is important to set Size after specifying Movie property
-
'if Size is specified before, it is ignored
-
axShockwaveFlash.Size = New System.Drawing.Size(270, 250)
-
axShockwaveFlash.Play()
-
End Sub
-
-
End Class
-
-
using this I can play a .swf video "D:\\movie.swf" - located in my hard drive...
but the issue is to play a .flv file i.e. a flash video file...
when i'm replacing the path with - "D\\flashvideo.flv" - the out put is getting blank - with a white backgruond.....
Can any one help me out??
Atanu
Thanks and Regards