Customise title wording in dialogue boxes

C

CW

I have seen somewhere, but cannot remember where, how to edit/customise the
title bar wording in the standard dialogue boxes (for example when a
validation is set, or when I use code to trigger a pop-up warning message
such as "Please enter the order date"). The standard boxes are headed
Microsoft Office Access but I would like to change this to show the name of
our system.
Maybe the proposed solution that I saw was to create one's own dialogue
boxes from scratch rather than modify the standard ones and I would be happy
to do that.
I'm using Access 2003 SP3.
Many thanks
CW
 
K

Klatuu

If you are using the MsgBox command, the Title is the 3rd argument. For
example:

=msgbox("Whaz UP?",vbYesNo,"Worlds Greatest Application")
will show the title bar as Worlds Greatest Applicaiton.
 
D

Damon Heron

Or, if you mean Inputboxes, you can add a title in the call.
MyValue = InputBox(Message, Title, Default)

Damon
 
T

tina

and to add to the other responses, the InputBox() function has a Title
argument, just as the MsgBox() function does.

hth
 

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

Top