Click to See Complete Forum and Search --> : Visual Basic


midhun
September 11th, 2001, 08:38 AM
What is the difference between form unload and query unlode?

DSJ
September 11th, 2001, 08:48 AM
QueryUnload is called before Unload and has a Cancel parameter which you can set to true if you want to prevent the form from Unloading (for example if the user needs to save data first or something of that nature). Unload runs it's code and the form Unloads.