how to play video files using .net.

  • Thread starter Thread starter jaffar
  • Start date Start date
J

jaffar

hi,

i am developing a windows application, in my application i have to
stor video files into database and play those video files from database ,
how to da this application, send me replay as soon as possible.
 
Jaffer,

Include ActiveX Video COntrol from COM Components to ur toolbox and
drag the control to ur form.Then set the fileName of the video to Video
control instance and add .show() of Video Control instance. You will be able
to see the video stream
 
hello sir,

still i am unable to paly the video files in vb.net windows
form , please send me any examples if possible . that will be helpful
for me.

thanking you sir,
 
hello sir,

still i am unable to paly the video files in vb.net windows
form , please send me any examples if possible . that will be helpful
for me.

thanking you sir,
 
Jaffar,
That was very clear.Anyways do the steps what i mentioning below
1. Open windows appli in VB.NET
2.Click on tool box and right click on the toolbox window.You will see
add/remove project items.Click on it.You will be able to see the components
window
3.In the components window,click on COM Component tab and choose ActiveX
Movie control and say Ok.
4. You will be able to see the control in the toolbox now.Drag it into ur
form.
5. Assuming u have got the filename from db and store it in variable
strUrl.Add the code below
AxActiveMovie1.FileName = strUrl;
AxActiveMovie1.Show()

Hope now you will be able to complete it

Rgds,
Santhi
 
Back
Top