"Cheryl Fischer" <(E-Mail Removed)> wrote in message
news:u%23%(E-Mail Removed)
> 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"
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)