Article ID: 143046
Article Last Modified on 11/18/2003
Option Explicit
Public Name As String
Private Sub Class_Terminate()
Form1.Print Name
End Sub
Option Explicit
Public A As New Class1
Private Sub Form_Load()
Show
Set A = New Class1
A.Name = "A"
'To workaround this bug, cut the next line
Set A = Nothing
Print "A Is " & IIf(A Is Nothing, "Nothing", "Something")
'And uncomment this next line.
'Set A = Nothing
End Sub
Additional query words: kbCtrl
Keywords: kbbug kbfix KB143046