M
mickey
Hi All
I'm using vb.net to record a wave file with mciSendString.
I can record from the microphone or from a line in jack. However, I can only
record mono, 8 bits, 11025 sample rate.
channgin anyone of these parameters results in ""The specified parameter is
out of range for the specified command."; error 0x11A.
here is a code snippet:
Result = mciSendString("set recsound channels 2 wait", ReturnString,
1024, 0)
If Not Result = 0 Then
errormsg = mciGetErrorString(Result, ErrorString.Value, 1024)
MsgBox(ErrorString.Value, 0, "Error (channels)")
End If
Thanks in Advance
Mickey
I'm using vb.net to record a wave file with mciSendString.
I can record from the microphone or from a line in jack. However, I can only
record mono, 8 bits, 11025 sample rate.
channgin anyone of these parameters results in ""The specified parameter is
out of range for the specified command."; error 0x11A.
here is a code snippet:
Result = mciSendString("set recsound channels 2 wait", ReturnString,
1024, 0)
If Not Result = 0 Then
errormsg = mciGetErrorString(Result, ErrorString.Value, 1024)
MsgBox(ErrorString.Value, 0, "Error (channels)")
End If
Thanks in Advance
Mickey