Turn off [Disable]Beep

J

Jim May

In connection with a looping message box showing records,
how can I "turn-off" the annoying beep that precedes each.

I tried Application.EnableSound = False without success!!

Help appreciated,
 
H

Harald Staff

My guess is that looping messageboxes, needing to be OKed away one after
another, are at least just as annoying as the ding.wav soundtrack to it.
Consider another solution to communicate with your user, perhaps all results
in a single list.

The sound is a Windows setting. You might code it away and back with some
API code, or (imo better) create a userform and display your stuff there.

HTH. Best wishes Harald
 
Top