VideoInputs
Viscom Software VideoCap ActiveX Control |
VideoInputs Collection
VideoInputs is a collection of VideoInput objects. A VideoInputs collection is used to obtain a list of available video input (video composite, S-Video, TV Tuner....).
Example:
This VB example show how to fill a combobox will all available video input:
Dim myVideoInput As VideoInput
For Each myVideoInput In VideoCap1.VideoInputs
cboVideoInput.AddItem myVideoInput.Name
Next