views:

36

answers:

1

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?

+4  A: 

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.

Jon Skeet
Thanks, I'll look into the Form.ShowDialog class. BTW, how did you edit your question without it showing the revision?
Serg
@Sergio Tapia: The first five minutes are "free" for edits.
0xA3