View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Jim Cone Jim Cone is offline
external usenet poster
 
Posts: 3,290
Default Beep accompanying My Message Box

Dave,
They all beep except for the one with the question icon.
I have the hearing ability of a doorknob. <g
Jim Cone
San Francisco, USA

Sub TestMe()
MsgBox "huh", vbInformation
MsgBox "huh", vbExclamation
MsgBox "huh", vbQuestion
MsgBox "huh", vbCritical
MsgBox "huh", vbYesNo
MsgBox "huh", vbAbortRetryIgnore
MsgBox "huh", vbRetryCancel
MsgBox "huh", vbOKCancel
End Sub


"Dave Peterson"
wrote in message
It beeped for me (and my dog like hearing!)


Jim Cone wrote:

A MsgBox with the Question button is quiet...
MsgBox "Did you check Cell B1 ?", vbQuestion
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware

"JMay"
wrote in message
I just entered into one of my spreadsheet modules:

Private Sub Worksheet_Activate()
MsgBox "Check Cell B1 - For Correct Month #"
End Sub

Now as I activate the (same) sheet I get (at no additional charge)
this "BEEP" << How can I disable this annoying sound?

TIA,


--

Dave Peterson