Whats the difference between
form_unload
form_queryunload
form_terminate
form_deactivate?
Thanks
deju
Printable View
Whats the difference between
form_unload
form_queryunload
form_terminate
form_deactivate?
Thanks
deju
unload
Event occurs when the form is actually unloaded from memory
queryunload
When you are "about" to unload this is run. If you set the Cancel parameter then it will actually "abort" the unload from happening. So you are "querying to unload"
terminate
NOt 100% sure but I think it is before the form is unloaded
deactivate
You can hide forms and then re-show them. The deactivate happens when you hide the form I think.