Can you stop a Msgbox from making a beep sound? Thanks.

  • Thread starter Thread starter kirkm
  • Start date Start date
If I recall, the beep is setup in your system sounds (asterisk).

You can turn the sound off if you want.

Hope that helps,
 
try:

Application.EnableSound = False

Just make sure to turn the property back to true after code execution, as
this turns off sound feedback for ALL Office applications.
 
Thanks Guys.

Not really there yet though. How come broro183
doesn't hear it though? Speakers off ??

Sub TestMS()
Application.EnableSound = False
MsgBox "Done"
Application.EnableSound = True
MsgBox "Done again"
End Sub

A beep each time as the Msgbox appears.
Disabling Windows sound completely may be the only way
but seems a bit extreme.

Cheers - Kirk
 
Back
Top