Originally Posted by
1337person
Hi, im working on a sound record program
but the problem is, it records at the lowest quality, i told it to use stereo and 44100 but its still mono and 1100.
So i wonder if anyone know how i can solve this problem
i use this
Private Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, ByVal uReturnLength As Integer, ByVal hwndCallback As Integer) As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
mciSendString("open new Type waveaudio Alias recsound", "", 0, 0)
mciSendString("set capture samplespersec 44100", 0&, 0, 0)
mciSendString("set capture channels 2", 0&, 0, 0)
mciSendString("record recsound", "", 0, 0)
i google´d around and all i find is ppl with the same problem and neither of em found a solution