Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.73K
~283 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for TheDocterd

There is a way you can do it when you close form2. In form1, make a new eventhandler that handles form.close(): [code=c#] form2.FormClosing += new FormClosingEventHandler(yourEventHandler); [/code] yourEventHandler code should be in form1: [code=c#] partial class form1: form { ... private void yourEventHandler(object sender, EventArgs e) { //here is where …

Member Avatar for d00garuz
0
283

The End.