Anyone know how to programmatically mute the Windows XP Volume using C#?
|
|
|
||||
|
|
|
Declare this for P/Invoke:
And then use this line to mute/unmute the sound.
|
||
|
|
|
|
I came across this project that might be of interest, if you're running Vista. |
||
|
|
|
|
You could use P/Invoke as explained here: http://www.microsoft.com/indonesia/msdn/pinvoke.aspx. It actually goes through the steps in Task 1: Mute and Unmute Sound near the top. |
||
|
|
|
|
You will probably want to use MCI commands: http://msdn.microsoft.com/en-us/library/ms709461(VS.85).aspx I should add that while this will give you good general control over the input and output mixers in windows, you may have some difficulty with doing detailed controls, like setting the mic boost, etc. Oh, and if you're on Vista, then just forget it. It's a totally different model. |
||
|
|
