VB.NET Developer Getting Started
Viscom Software VideoCap ActiveX Control |
VB.NET developer Getting Started
Assuming that you have already run the Videocap ActiveX Control installation program and started Visual Studio, the next step is to create a new project. To do this begin by selecting the "Windows Forms App(.NET Framework), Click the Next button.
|
Select Control
The next step is to install VideoCap ActiveX in ToolBox. Select Toolbox, select Components item, right click mouse button, select Choose Items...
Select COM Components tab, select VideoCap Control , click OK.
Now you will see the VideoCap ActiveX's icon on toolbox, drag it to form.
Add Program Code
In the Form Load event, add the following code, which will automatically enable the live video display from first video device when the program is started.
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
AxVideoCap1.Device = 0
AxVideoCap1.Start()
End Sub