forum

Home / DeveloperSection / Forums / Catching MessageBox result

Catching MessageBox result

Anonymous User154904-Oct-2013

I'm trying to get the user to confirm if they want to delete a product using a MessageBox and catching its result.

This is my code: 

// Confirm if the user really wants to delete the product
DialogResult result = MessageBox.Show("Do you really want to delete the product \"" + productName + "\"?", "Confirm product deletion", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (result == DialogResult.OK)
{
    MessageBox.Show("deleted");
}

When I run the code and try to delete a product, deleted never shows. On the MSDN page it says to use MessageBoxResult rather than DialogResult but Visual Studio doesn't recognise MessageBoxResult, and I use DialogResult elsewhere in my code for an open file dialog. Obviously, that's not the proper way to check it.


Updated on 04-Oct-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By