I'd like to create a simple confirm dialog saying "Please check the information and if you're sure it's correct, click OK."
Is there something built in like this?
I'd like to create a simple confirm dialog saying "Please check the information and if you're sure it's correct, click OK."
Is there something built in like this?
MessageBox.Show? You can specify the title, caption, and a few options for which buttons to display.
On the other hand, if you're asking people to confirm information, that sounds like you probably want to show a custom dialog - which you can do with Form.ShowDialog.