I created on COM dll in CSharp.NET 2003 I have created TLB file for my DLL so that I can use that DLL in VB6. The DLL successfully imported in my VB6 project I have created object for my DLL but I can’t access any property of that DLL in vb6 like after pressing dot I can’t access any function or property of my DLL
is there any special way to use .NET DLL or what?
My code
Dim objFactClass As MyDLL.Processor
objFactClass = New MyDLL.Processor

objFactClass. <<----- Can’t access anything