DialogResult result = MessageBox.Show("Content",
"Title",
MessageBoxButtons.YesNo,
MessageBoxIcon.Warning);
if (DialogResult.OK == result)
{
....
}
Any tips? Do I need to add a Eventhandler to the Messagebox? If so, how?

New Topic/Question
Reply




MultiQuote



|