|
-
Jun 16th, 2010, 10:58 PM
#1
Thread Starter
Junior Member
[RESOLVED] Unload Method And Query Unload ???? HELP
VB 6.0
Private Sub Form_Unload(Cancel As Integer)
VB.NET 2008
???????
VB 6.0
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
VB.NET 2008
????????
is VB.Net supported this two events ???????
-
Jun 16th, 2010, 11:08 PM
#2
Re: Unload Method And Query Unload ???? HELP
If you want to know what events the Form class has and what they do you should read the documentation for the Form class. That's what it's for.
http://msdn.microsoft.com/en-us/libr...8VS.90%29.aspx
-
Jun 16th, 2010, 11:39 PM
#3
Thread Starter
Junior Member
Re: Unload Method And Query Unload ???? HELP
Oh .... hehehehe ...... tnx for your reply ...... i figured out what to do ...... tnx
VB 6.0
Private Sub Form_Unload(Cancel As Integer)
VB.NET
Private Sub frmQuery_FormClosed(ByVal sender As Object, ByVal e As Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
VB 6.0
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
VB.NET
Private Sub frmQuery_FormClosing(ByVal sender As Object, ByVal e As Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|