views:

867

answers:

1

Is there a way to set the microphone volume in C# (normally done in control panel -> audio -> advanced, go to recording, and then dragging the slider)? I only want to set it to maximum, if that makes it any easier. Thanks!

+1  A: 

I don't think there's a managed way to do this. I would look into the winmm dll. Here is a link to the available methods.

Also, here's an example from CodeProject for how it could be used.

Shane Fulmer