Typical Info Message Box
MessageBox.Show("Message Text", "Message Box Title", MessageBoxButtons.OK, MessageBoxIcon.Information);
Are you Sure Message Box
if (
MessageBox.Show(
"Are you sure you want to do this?",
"Continue?",
MessageBoxButtons.YesNo,
MessageBoxIcon.Exclamation
) == System.Windows.Forms.DialogResult.Yes)
{
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.