O
Oliver Drobnik
Hi,
I have a curious problem using VS.NET 2002
I create a new class library with a public function
Public Class ASN1
Public Sub New()
End Sub
Public Sub test()
MsgBox("test")
End Sub
End Class
Now I open a new Solution, Add a new Reference to the DLL (in bin
directory).
now I can use DIM and I even see the test method in the object browser
BUT ..
Dim asn1 As New components.ASN1() <- here it shows me the class
names!
asn1.... <- it does not show my any methods here
What could be the reason for this?!!
On a different PC with VS.NET 2003 this works without problems. Is
this a VS.NET 2002 bug?
kind regards
Oliver Drobnik
I have a curious problem using VS.NET 2002
I create a new class library with a public function
Public Class ASN1
Public Sub New()
End Sub
Public Sub test()
MsgBox("test")
End Sub
End Class
Now I open a new Solution, Add a new Reference to the DLL (in bin
directory).
now I can use DIM and I even see the test method in the object browser
BUT ..
Dim asn1 As New components.ASN1() <- here it shows me the class
names!
asn1.... <- it does not show my any methods here
What could be the reason for this?!!
On a different PC with VS.NET 2003 this works without problems. Is
this a VS.NET 2002 bug?
kind regards
Oliver Drobnik