Hi,

The code I have here, records whatever i speak into the microphone, but I want to be able to hear what im saying while im recording through the speakers. How do i do this?

Also when it records my voice in .wav it is quite distorted but when I use other applications like skype or teamspeak or audacity my voice comes clear through the mic.

Is there another way I can just listen to my voice from my microphone to my speakers? Say if I just had a button which I could click and I could just hear my voice playback through my speakers.

this is the code i use to record

Code:
  
  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

    Dim SoundName As String

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        ' record from microphone

        mciSendString("open new Type waveaudio Alias recsound", "", 0, 0)


        mciSendString("record recsound", "", 0, 0)


    End Sub
thx all help appreciated