What does Query_unload event do in VB? Why we need Form
_unload event?
Answers were Sorted based on User's Feedback
Answer / amirthraj
Query_Unload event is fired, when the form is actually
preparing for unload. Whereas Form_Unload is triggered when
form is unloaded. It's possible to stop the form unload
from Query_Unload event by setting its Cancel argument to
True.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / parmanand
Query unload means your form is about to close but still not
closed.
Form _unload means your form is released from the memory and
its totally closed. Hence if you want to display any message
you will keep it in Query unload , form unload will not work.
Ex.
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode
As Integer)
MsgBox "do you want to close the form ?", vbYesNo
if vbno then
Cancel = True
end if
End Sub
Is This Answer Correct ? | 2 Yes | 0 No |
What is the use of Connection object?
Is it possible to set a shortcut key for label? Explain ?
Is visualvm free?
What is OLEDB?
How do you make a TEXTBOX read only? Or, how do I prevent the user from changing the text in a TEXTBOX?
which property of menu cannot be set at run time.
It possible to call OLEDB?s Features directly in VB without using any control?
Is visual basic still used?
what are the different Types of Recordsets.
i want to retrive data from one spead sheet to another UI (workbook). control will search cell by cell for each row and load the data in another workbook(UI).
List out controls which does not have events ?
What is the use of NEW Keyword Explain?