Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to change the message box control buttons as Yes to Continue and No to Close.. I dont know how to change the button text..Here is my code

 DialogResult dlgResult=MessageBox.Show("Patterns have been logged successfully","Logtool",MessageBoxButtons.YesNo,MessageBoxIcon.Information);

Any Suggestion??

share|improve this question
Please consider changing the title of your question - you don't seem to want to change the name of the control but change what the buttons text is. – Oded Nov 24 '10 at 8:16

4 Answers

up vote 6 down vote accepted

Just add a new form and put buttons and a label.Give the value to be shown and text of button etc in its constructor and call it from anywhere you want in the project

In project -> Add Component ->Windows Form and select a form

Put some label and buttons

Initialize the value in constructor and call it from anywhere.

public class form1:System.Windows.Forms.Form
{
  public form1(){
 }
  public form1(string message,string buttonText1,string buttonText2)
{
   lblMessage.Text=message;
   button1.Text=buttonText1;
   button2.Text=buttonText2;
}
}

//Write code for button1 and button2 's click event inorder to call from any where in your current project.

//Calling 

Form1 frm=new Form1("message to show","buttontext1","buttontext2");
frm.ShowDialog();
share|improve this answer
1  
You also need to set the Dialog Result Property for the buttons that you add. more details here: switchonthecode.com/tutorials/… – CEPA Sep 20 '12 at 0:28
Yes then you check the ShowDialog() with DialogResult . – VeeKayBee Sep 20 '12 at 6:35

I never imagined it would be so simple - go to this link: http://www.codeproject.com/Articles/18399/Localizing-System-MessageBox

Download the source. Take the MessageBoxManager.cs file, add it to your project. Now just write somewhere (like in your Program.cs file) these lines:

 MessageBoxManager.OK = "Alright";
    MessageBoxManager.Yes = "Yep!";
    MessageBoxManager.No="Nope";
    MessageBoxManager.Register();
share|improve this answer
Then you just use MessageBox.Show as you normally would. Works great! – cdavidyoung Sep 24 '12 at 15:16
+1: many thanks for the link – horgh Jan 18 at 7:06
do you have the code, as the codeProject wont let me register, not download or view the code? keeps say object ref not set to instance of an object – f1wade Apr 25 at 14:46

Hope this solve your problem.

If MessageBox.Show("Welcome...", "Hello bala", MessageBoxButtons.YesNo) = Windows.Forms.DialogResult.Yes Then
                CallTheFunction()
            Else
                Me.Close()
            End If
share|improve this answer
Did you read the question mate? – Nickon Apr 16 at 14:46

You can't.

To do this you need to build your own MessageBox control.

share|improve this answer
any samples?? – bala3569 Nov 24 '10 at 8:19
1  
@bala3569 Here: switchonthecode.com/tutorials/… – Adrian Faciu Nov 24 '10 at 8:22
You can create a simple form with two buttons inside, and then call ShowDialog() method, and insure that the startingPlace for the form is CenterParent, as far as i remember :) – Rami.Shareef Nov 24 '10 at 8:52
1  
Well, you probably could, but it's way more work than it's worth. – Cody Gray Nov 24 '10 at 9:04
True, far simpler to build your own MessageBox. – Binary Worrier Nov 24 '10 at 9:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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