G
Guest
I have a function that instanciates an object like this...
Private Sub MySub()
Dim myObject as new myClass
End Sub
My new object has a timer that fires every min waiting for some criteria to be satified. Once the criteria is satisfied how can myObject destroy itself?
Private Sub MySub()
Dim myObject as new myClass
End Sub
My new object has a timer that fires every min waiting for some criteria to be satified. Once the criteria is satisfied how can myObject destroy itself?