Devices
Viscom Software VideoCap ActiveX Control |
Devices Collection
Devices is a collection of Device objects. A Devices collection is used to obtain a list of available video capture device.
Example:
This VB example show how to fill a combobox will all available video capture device:
Dim myDevice As Device
For Each myDevice In VideoCap1.Devices
cboDevice.AddItem myDevice.Name
Next