change title bar of msgbox

A

alex

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

Thank you , Alex
 
C

Cheryl Fischer

You can use the MsgBox() function, which has an argument for Title, instead
of the MsgBox statement.
 
D

Dirk Goldgar

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top