Hello Community,
I think (maybe there is the problem

) I have a simple problem.
I need two Comboboxes, one with all available soundcards that have a option to record anything.
The second Combo will display all record inputs (Line, Microphone, ...) from the first selection.
I build a Sub to show all Devices (from the multi example):
Public Sub SelectDevice()
Dim c As Integer
frmMain.cboSoundkarte.Clear
c = 1 ' Device 1 = 1. verfügbare Device
While BASS_GetDeviceDescription(c)
frmMain.cboSoundkarte.AddItem VBStrFromAnsiPtr(BASS_GetDeviceDescription(c))
c = c + 1
Wend
End Sub
But, my internal soundcard will make two soundcards: one for output (soundmax 0) and one for input (soundmax 1). Soundmax 1 will not displayes in combo 1.
Whatever, is it possible to select only the name of device, they have a record input and select after all available inputs?
Maybe with a little source?
Thx.
Michael
-- sorry for my bad english ---