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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top