Quote:
Originally Posted by smith
How can you add an event for FormB's event from FormA? Is that even possible?
|
Form frmAddOrgSystem = new frmAddOrgSystem();
frmAddOrgSystem.Closing += new System.ComponentModel.CancelEventHandler(this.frmA ddOrgSystem_Closing);
frmAddOrgSystem.ShowDialog();
And thanks for the explanation brackett