Facebook
From Sludgy Hummingbird, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 183
  1.  [DllImport("winmm.dll", EntryPoint = "mciSendStringA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
  2.         private static extern int mciSendString(string lpstrCommand, string lpstrReturnString, int uReturnLength, int hwndCallback);
  3.  
  4.  
  5.  
  6. private void StartRecording_btn_Click(object sender, EventArgs e)
  7.         {
  8.             mciSendString("open new Type waveaudio Alias recsound", "", 0, 0);
  9.             mciSendString("record recsound", "", 0, 0);            
  10.         }
  11.  
  12.         private void StopRecording_btn_Click(object sender, EventArgs e)
  13.         {
  14.             mciSendString("save recsound C:\\Users\\FUJITSU\\Desktop\\record\\result.wav", "", 0, 0);
  15.             mciSendString("close recsound ", "", 0, 0);
  16.  
  17.         }