Thread: msgbox sounds
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone Jim Cone is offline
external usenet poster
 
Posts: 3,290
Default msgbox sounds

Add the sound...
Beep
Answer = msgbox(prompt:="Get a response",buttons:=vbyesno)
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"joeeng"
wrote in message
I notice that when a msgbox is displayed, it plays a sound to alert the user.
Example:
Msgbox "Message"
However, when an answer is requested:
Answer = msgbox(prompt:="Get a response",buttons:=vbyesno)
the msgbox does not play a sound. Is there a way to get the answer msgbox
to play an alert sound?