Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i try this
with a refrence dll file
VB
Private Sub cboVideoSource_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboVideoSource.SelectedIndexChanged


       If cboVideoSource.SelectedItem <> "No Video Devices" Then
           If VideoSourcePlayer1.IsRunning = True Then
               VideoSourcePlayer1.SignalToStop()
               VideoSourcePlayer1.WaitForStop()
           End If

           VideoCaptureSource = New VideoCaptureDevice(VideoDevices(cboVideoSource.SelectedIndex).MonikerString)
           VideoSourcePlayer1.VideoSource = VideoCaptureSource
           VideoSourcePlayer1.Start()
       End If
   End Sub


videos show in player but just as image is is not like video moving kindly help me
Posted
Updated 4-Oct-13 1:26am
v2

1 solution

 
Share this answer
 
Comments
irfanansari 4-Oct-13 13:58pm    
thank you//

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900