View Single Post
  #4 (permalink)  
Old 08-22-2006, 08:25 AM
hoser2001's Avatar   
hoser2001 hoser2001 is offline
Programmer
 
Join Date: Jul 2006
Posts: 175
Credits: 0
Rep Power: 11
hoser2001 is on a distinguished road
Default

Quote:
Originally Posted by smith View Post
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
Reply With Quote