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
1 Posted Topic
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 …
The End.
d00garuz