What event to trap for closing app

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I have an app comprising of the start-up form. I need to run a process when
the application closes. What event do I need to trap for this purpose?

Thanks

Regards
 
Hi

I have an app comprising of the start-up form. I need to run a process when
the application closes. What event do I need to trap for this purpose?

Thanks

Regards

"MyBase.FormClosing" is fired before the form is closed and
"MyBase.FormClosed" is fired after the form is closed.
 
Back
Top