Using the MsgBox Function: MsgBox (prompt [, buttons] [, title], [, helpfile, context]) : MsgBox « Language Basics « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Language Basics
- MsgBox
Using the MsgBox Function: MsgBox (prompt [, buttons] [, title], [, helpfile, context])
Sub msgSub()
MsgBox "The procedure is complete."
End Sub
'Formatting the Message Box
Sub msgBoxQuotation()
MsgBox "A ""B"" C."
End Sub
Related examples in the same category