What does Query_unload event do in VB? Why we need Form
_unload event?

Answers were Sorted based on User's Feedback



What does Query_unload event do in VB? Why we need Form _unload event?..

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

What does Query_unload event do in VB? Why we need Form _unload event?..

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 does Query_unload event do in VB? Why we need Form _unload event?..

Answer / sr_arvind

to close the form .

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Visual Basic Interview Questions

What is the use of parameters collection?

0 Answers  


What is the default model of the form?

0 Answers   Transtech,


Which property of textbox cannot be changed at runtime?

1 Answers  


What do you mean by HTTP?

1 Answers  


What is the diff between RDO and ADO?

3 Answers  






How do I force a file dialogue box to reread the currect disk?

0 Answers  


what are the types of LockEdits in DAO?

0 Answers  


How many objects resides in ADO ?

0 Answers  


what are the Differences between ActiveX Control and Standard Control?

0 Answers   Wipro,


What is the use of OLE?

0 Answers   IBM,


What are the types of Error?

1 Answers   IBM,


How can we call Stored procedure of Back End in RDO and ADO ?

1 Answers  


Categories