onshutdown() problem
-
Hi all i have a c# application on minimizing i place it into the system tray.now when the application is in the system tray and the user shutdown the system a log file should be written into a temp folder in c:\ i tried using onshutdown() it is not working, it would be better to say i dont know how to use it in my application plz help me
-
Hi all i have a c# application on minimizing i place it into the system tray.now when the application is in the system tray and the user shutdown the system a log file should be written into a temp folder in c:\ i tried using onshutdown() it is not working, it would be better to say i dont know how to use it in my application plz help me
Handle the form's closing event.
FormClosingEventArgs
has aCloseReason
property. If it isCloseReason.WindowsShutDown
, write log file.Navaneeth How to use google | Ask smart questions
-
Handle the form's closing event.
FormClosingEventArgs
has aCloseReason
property. If it isCloseReason.WindowsShutDown
, write log file.Navaneeth How to use google | Ask smart questions