Thread: MsgBox help
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Juan Pablo González Juan Pablo González is offline
external usenet poster
 
Posts: 226
Default MsgBox help

Aaron Cooper wrote:
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")

--
Regards,

Juan Pablo González