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

C

Chris \Smitty\ Smith

If I recall, the beep is setup in your system sounds (asterisk).

You can turn the sound off if you want.

Hope that helps,
 
B

Burnnie Holliday

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.
 
K

kirkm

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

Beep Not Working 7
Silent Msgbox? 9
How to tell when Beep sound is done? 2
User Form pop up with a beep? 4
Broke my Beep 3
Unknown source of beeping 14
MsgBox sounds 4
Making a "ding" sound in the macro process 6

Top