I have problem when closing the windows form application. I need to know is it always called private void Form1_FormClosing(object sender, FormClosingEventArgs e) if I press X button on the form and if I just click to shut down computer?
Anyone neither of this times form is not closed as normally. I always have screen to press End now
I have connecting to the databases when form is closing, and copying some records to another database. Is that maybe the problem? Form is closing to fast and sql commands can't finish?
I have tried Enviroment.Exit(0), Application.Exit(). Nothing seems to be working correctly.
How to make it do all the sql and then quit?
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
//close database connection
if (Con.State == ConnectionState.Open)
Con.Close();
info.Dispose();
//last check for local database
try
{
// database queries and so on....
}
catch (Exception ex)
{
writeToLogFile(ex.Message);
}
// exit
Environment.Exit(0);
}
Environment.Exitattempting to close the form again. – Douglas Jun 16 '12 at 14:59FormClosingevent and then add pieces of your code back in to isolate the issue. – Evan Mulawski Jun 16 '12 at 15:03