S
Sunit Joshi
Hello All
I have a baseForm in which I have a bntOk with DialogResult set to OK.
Now I have a derived form, ObjProp. This I show in code but somehow
the btnOk Click event does not seem to occur.
using(ObjProp propDlg = new ObjProp())
{
if(propDlg.ShowDialog()==DialogResult.Ok)
{
//Do something....Code never reaches here.
}
}
I have a baseForm in which I have a bntOk with DialogResult set to OK.
Now I have a derived form, ObjProp. This I show in code but somehow
the btnOk Click event does not seem to occur.
using(ObjProp propDlg = new ObjProp())
{
if(propDlg.ShowDialog()==DialogResult.Ok)
{
//Do something....Code never reaches here.
}
}