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 ???????
Printable View
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 ???????
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
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