No Beep

G

Guest

The first of the following two macros produces a message box and a beep.

The second macro doesn't produce a beep. I would like to produce a beep to
signify that a macro I am writing has finished running, but I don't want to
produce a message box at the same time.

Any suggestions please?

Sub sbBeep()
MsgBox "This is a test.", vbExclamation, "Test Title"
End Sub

Sub sbBeep2()
Beep
End Sub
 
G

Guest

Thanks - that seemed to work

I wonder why Beep didn't work? I'm sure it has done in the past

Regards

Tony Wolfe
 

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

Top