Is there a way to control the computer's actual volume in C# and display that in a vertical track bar??

I have tried practically everything, but there must be something I am missing.

Thanks.

link|improve this question

"Practically everything" is not very helpful for ruling out answers we don't have to suggest anymore because you've already tried them. – stakx Nov 19 '11 at 9:07
@stakx practically everything means that I went through the .Net framework, but nothing did the trick – H Bellamy Nov 19 '11 at 9:08
1  
Related question: C# get master volume level/percent. – stakx Nov 19 '11 at 9:08
Found a good Youtube video about how to do this. Here it is: youtube.com/watch?v=ZY29YUqz3lE I have watched it and it works well. – H Bellamy Nov 19 '11 at 9:19
@MerlynMorgan-Graham I have to wait for 8 hours before I can do that. – H Bellamy Nov 19 '11 at 10:21
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

Have you tried using the winmm.dll library through p/Invoke?

That's what this article recommends: http://www.dreamincode.net/forums/topic/45693-controlling-sound-volume-in-c%23/

He's (strangely) licensed his code with GPL, so I can't post it here. But it is pretty basic and simply calls various mixer methods.

There's another winmm wrapper with an MIT license you can get here: http://winmm.codeplex.com/. It will have the same underlying code, but you won't have to GPL your code when you use it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.