MsgBox help

  • Thread starter Thread starter Aaron Cooper
  • Start date Start date
A

Aaron Cooper

Does anyone know where I could go to find a good tutorial on how to set
up message boxes?

Thanks for your help.
 
Hi
I would start with the Excel help for 'msgbox'. Thinks this is quite
intuitive.
 
Aaron said:
Does anyone know where I could go to find a good tutorial on how to
set up message boxes?

Thanks for your help.

Online help ? MsgBox'es are not hard... just

Dim Answer As Long

Answer = MsgBox("The message")

or

Answer = MsgBox("The message", vbYesNo, "Title")
 
You can try this

Tools, Macro, Visual Basic Editor
Click F1
Type is Msgbox
 

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