msgbox sounds

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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


"joeeng" <[email protected]>
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?
 
beep
answer = msgbox(....


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?
 

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

Back
Top