Cheryl Fischer said:
You can use the MsgBox() function, which has an argument for Title,
instead of the MsgBox statement.
I think this is a false distinction. AFAIK, there is no MsgBox
statement, only a MsgBox function, which like all functions can be
called either with or without making use of its return value. In other
words, this ...
Dim retval As Integer
retval = MsgBox("Boo!", vbExclamation, "Look Here")
' ... and then do nothing with retval ...
is no different from ...
MsgBox "Boo!", vbExclamation, "Look Here"