|
The behavior of the Application Title and the Msgbox() function in Microsoft AccessProvided by: FMS Development TeamThe Msgbox() function has an optional parameter, "Title", that allows you define the caption of the message box. However, if the Title is omitted, then Microsoft applies a default value.
In Access 97, if you specify an Application Title under the Tools->Startup
menu, then this value will appear in the caption of the Msgbox() function if
there is no value specified for the "Title" parameter. This is a nice
feature because it allows a centralized location to apply the title to all
Msgbox() functions throughout the application. However, starting with Access
2000 and through Access 2003 (current version), this functionality was
changed. Even if you specify the Application Title, this will not be
displayed if the "Title" parameter is missing from the Msgbox() function.
Here is a working example to illustrate the
new concepts to apply. |