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'm trying to display a Message Box with both an icon and buttons using only integers / strings. This is VERY simple to do in VB6 (but I want to do it in c#); below is an example.

Call Msgbox("Message Text","Message Title", 32, 64)

As far as C# goes... I know I can declare something as type 'MessageButtons' but I don't want to do that, I am looking for some way to represent the messagebutton as an integer (or as a string). Either one will work just fine.

In short, how can I convert the above code to c#?

share|improve this question

2 Answers

up vote 0 down vote accepted

The only thing that comes to my mind is to have 2 arrays which you fill witht the corespondentig buttons/icons...

somethign like this:

  MessageBoxButton[] mbs = new[]
                                     {
                                         MessageBoxButton.OK,
                                         MessageBoxButton.OKCancel, 
                                         MessageBoxButton.YesNo,
                                         MessageBoxButton.YesNoCancel
                                     };

        MessageBoxImage[] mbi = new[]
                                    {
                                        MessageBoxImage.Asterisk, MessageBoxImage.Error, MessageBoxImage.Exclamation,
                                        MessageBoxImage.Hand, MessageBoxImage.Information, MessageBoxImage.None,
                                        MessageBoxImage.Question, MessageBoxImage.Stop, MessageBoxImage.Warning
                                    };
        MessageBox.Show("Message Text", "Message Title", mbs[2], mbi[4]);

but as I can see there is a different set between vb6 and c# 4.0 I am using... so you have to figure out how you want to translate them

share|improve this answer
Here is what I am trying to do, again - not sure if it's even possible. If not, I will use your method and mark it as the correct answer in this case. /* Int32 myint = 0; myint = (Int32)MessageBoxButtons.AbortRetryIgnore; MessageBox.Show(myint.ToString()); */ MessageBox.Show("Testing", "Title", 2, MessageBoxIcon.Error); – user725913 May 2 '11 at 16:55
I ended up using your method after a simple conversion to c#.net. All is working fine on my end. Thank you very much (answer marked as correct). – user725913 May 2 '11 at 17:04
glad i helped:) – Ivan Crojach Karačić May 2 '11 at 19:43

http://www.dotnetperls.com/messagebox-show

Google is a friend =). That link is the fourth result for "c# message boxes".

You will ask Google many questions such as this while learning a programming language.

DialogResult result3 = MessageBox.Show(
            "Title",
            "The Question",
            MessageBoxButtons.YesNoCancel,
            MessageBoxIcon.Question,
            MessageBoxDefaultButton.Button2
);

To use integers as arguments, look through the docs for the value of MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, etc...

share|improve this answer
I have read through that document many times before asking this question - I guess I just failed to fully comprehend it. I will go and take a second look and report back here shortly. – user725913 May 2 '11 at 16:46
Perhaps I am still not understanding this document, or perhaps you did not completely understand my question - but I do not want to use "Messageboxbuttons.YesNoCancel", rather I would like to use an integer value which represents this button style. Thank you. – user725913 May 2 '11 at 16:49
Yes, the integer value can be found in the documents.... – c00lryguy May 2 '11 at 22:30

Your Answer

 
discard

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