vote up 2 vote down star

Is there any way to have a default MessageBox.Show() caption? Let says I would like to have my application name as Message Box caption and I don't want to input MessageBox.Show(msg, ApplicationName) all the time. I just want to call MessageBox.Show(msg).

flag

4 Answers

vote up 7 vote down check

make Global function like this:

static class Global
{
    public static void ShowMyMessage(string msg)
    {
     MessageBox.Show(msg, ApplicationName)   
    }
}

now when you want to show message just write:

Global.ShowMyMessage("Message");
link|flag
vote up 2 vote down

No, but you could write a helper method that does what you want.

link|flag
vote up 2 vote down

I don't believe so. But why not just create a wrapper function that places this default caption into the MessageBox and they you would just call the wrapper function.

link|flag
vote up 1 vote down

A wrapper function would be best but you could inherit the MessageBox control and find the text from the application's active window.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.