AudioDevices
|
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 AudioCapture1.AudioDevices
cboAudioDevice.AddItem myAudioDevice.Name
Next