I'm a beginner and making an internet radio player and I want to control the volume with my own TrackBar
. How is that possible? I haven't found any solutions to do this.
Asked
Active
Viewed 3,860 times
1
-
http://www.dreamincode.net/forums/topic/45693-controlling-sound-volume-in-c%23/ – Mr_Green Nov 05 '12 at 12:27
-
http://stackoverflow.com/questions/13139181/how-to-programmatically-set-the-system-volume – Sirwan Afifi Nov 05 '12 at 12:30
-
http://stackoverflow.com/q/8192953/1577396 – Mr_Green Nov 05 '12 at 12:30
-
http://www.dreamincode.net/forums/topic/45693-controlling-sound-volume-in-c%23/ – Sirwan Afifi Nov 05 '12 at 12:31
1 Answers
1
Take a look at NAudio. this is a brilliant API for implementing audio based applications in .NET
Also consider this
how to Control "Windows XP Volume Control" with VC#
This might also help. This explains how to hook the Win32 API Multimedia library (winmm.dll) to control system volume
http://www.dreamincode.net/forums/topic/45693-controlling-sound-volume-in-c%23/

Community
- 1
- 1

Matthew Layton
- 39,871
- 52
- 185
- 313
-
Thanks for these. Im continuing learning because this is quite hard for me now. – Burucsb Nov 06 '12 at 10:36
-
@Burucsb, learning is your key to success, and it gets easier with time! :-) – Matthew Layton Nov 06 '12 at 15:29