Viscom Software Screen2Video ActiveX Control

AudioDevices Collection

AudioDevices is a collection of AudioDevice objects. An AudioDevices collection is used to obtain a list of available audio device.

Example:   

This VB example show how to fill a combobox will all available audio device:

Dim myAudioDevice As AudioDevice

For Each myAudioDevice In Screen2Video1.AudioDevices
    cboAudioDevice.AddItem myAudioDevice.Name
Next