title for the msgbox

misdirection

Registered User.
Local time
Today, 00:33
Joined
Jun 30, 2008
Messages
15
How do I get rid of the title that shows "0", it's ridicilious and I can't figure it out on how to remove it. Thanks.:o
 
I don't guess I've ever seen that. What does your line of code that calls the message box look like?
 
I am a little confused, are you trying to create a message box with a title or without?

If you are trying to create a message box without a title you can use this code:
MsgBox "Do you like water?", vbYesNo, ""

This example will have a Yes or No option and a blank title bar. If you want a title then put your text in between the last two double quotes:
MsgBox "Do you like water", vbYesNo, "For Water Lovers"

Hopefully this helps you,
Tyler
 
If you're seeing a Message Box Title displaying a zero (0) then most likely there is a code line calling the MsgBox function which is using a Variable to display a Title rather than a physical string. That variable may be supplying the undesirable title and you will need to find out why. Most likely because the variable wasn't Declared as a String.

.
 

Users who are viewing this thread

Back
Top Bottom