How to detect if a System.Media.Sound (BEEP) has been played by another program

631 Views Asked by At

I am trying to figure out if a System.Media.Sounds has been played, for error logging purposes.

How would I go about getting a boolean value representing if any of the System.Media.Sounds have been played during the execution of my program?

As I am executing the code, I come across a situation where a system (beeping sound) is played about 10+ times a minute. I would like to make a log for every time the (beeping sound) is played.

Perhaps I can make it an EventArgument?

1

There are 1 best solutions below

0
On

This question is similar to yours; unfortunately, the answer that seems to work involves DirectSound, which will probably be a lot more complicated than what you're looking for.