MsgBox help

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.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
F

Frank Kabel

Hi
I would start with the Excel help for 'msgbox'. Thinks this is quite
intuitive.
 
J

Juan Pablo González

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.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

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

Dim Answer As Long

Answer = MsgBox("The message")

or

Answer = MsgBox("The message", vbYesNo, "Title")
 
Top