TVChannels
Viscom Software VideoCap ActiveX Control |
TVChannels Collection
TVChannels is a collection of TVChannel objects. A TVChannels collection is used to obtain a list of available TVChannels if TV Tunner card present in your computer.
Example:
This VB example show how to fill a combobox will all available TV Channel:
Dim myChannel As TVChannel
VideoCap1.Start
VideoCap1.ScanTVChannels
For Each myChannel In VideoCap1.TVChannels
cboChannel.AddItem myChannel.ChannelNo
Next