Hey! I am not trying to push my luck here but I have another c# question. I have tried every possible event I found using google. Here is the code:
private void
You might be missing actual subscription code, which is something along these lines:
this.Closing += Form1_Closing;
Instead, try overriding OnXXX methods - this is the preferred way of doing things.