Hi Alex,
Just a quick example:
MsgBox "Message Here", vbInformation, "My Title Here"
Alternatively, if you don't want to manually add a title to every MsgBox
function you can change your application title by going to Tools--Startup
and putting in an Application Name. Then leaving the Title argument blank
will result in every MsgBox title having that text.
So you could just go like this:
MsgBox "Message Here", vbInformation
And the title will display whatever you have defined as the Application
Name.
Hope that helps,
Jeff Conrad
Bend, Oregon