Click to See Complete Forum and Search --> : Confirm, Prompt, etc


yoyosh
April 8th, 2006, 05:35 PM
Is there a simple way to use in my application common dialogboxes, like yes/no confirm, etc? I mean a special class, or something...
Instead of having to implement that manually

I found a HTMLWindow class, but this has been designed to something else. Any further ideas?

jhammer
April 9th, 2006, 04:55 AM
Do you mean like MessageBox?

if (MessageBox.Show("Ask Something",...,MessageBoxButtons.YesNo) == DialogResult.Yes)
{
(...)
}