5

I would like to disable some or all system sounds for a .NET 3.5 application.

I cannot find anything around System.Media.SystemSounds that turns off sound settings that the user has chosen via the control panel.

[Edit] This is more for the Exlamation type sounds on certain message boxes we display. Would really like a mute for a form or dialog.

HadleyHope
  • 1,173
  • 1
  • 10
  • 19

1 Answers1

2

By definition, they are system sounds, not application sounds. Disabling all of them would therefore disable them for other applications, as well. Would you like using an application that arbitrarily disabled all your system sounds?

Without knowing which specific system sounds you're disabling, it's impossible to give you a more direct answer other than to simply mute the speakers.

NathanAldenSr
  • 7,841
  • 4
  • 40
  • 51
  • 3
    I believe the OP was asking if you can mark the application such that windows generates no system sounds for it. – Superbest Apr 07 '12 at 02:26