change title bar of msgbox

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

Is there a way to change the title bar of msgbox from
<Microsoft Access> to <My Application Name>?

Thank you , Alex
 
You can use the MsgBox() function, which has an argument for Title, instead
of the MsgBox statement.
 
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"
 
Back
Top