Hello ORI,
I need your related to message box. In normal windows application, we are able to use
DialogResult
if
{ // do something;}
else
{//do something else;}
if (oResult == DialogResult.No)
but with VWG I am unable to use this as the debugger doesnot wait for the dialogresult and goes on executing the next step.
Due to this i am facing problem as I am unable to get what user has opted for in the dialog.
Please guide me how should i fix these problem.
Thanks
Abhijit.
(oResult == DialogResult.Yes)oResult = MessageBox.Show(" Do you want to proceed? ", "Sample Application", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question); |
|