F
franzdawg3
I have recently re-written a reference library that I'm guessing was
previously written in either VB6 or C into VB.NET. My goal in doing
this was to be able to just switch my references in my VB6 app from
the old .dll to the new .NET object and then all the syntax would
remain the same.
Example:
Dim MyArray as CustomArray
result = CustomArray.Function
Well the problem is that now that I've created this .NET dll I have to
qualify everything which kind of sucks but I understand why it is
this way. IE:
Dim MyArray as MyNewLibrary.CustomArray
Is there any way that I can modify my .NET class library so that I can
just refer to it from VB6 as CustomArray?
Thanks,
Kris
previously written in either VB6 or C into VB.NET. My goal in doing
this was to be able to just switch my references in my VB6 app from
the old .dll to the new .NET object and then all the syntax would
remain the same.
Example:
Dim MyArray as CustomArray
result = CustomArray.Function
Well the problem is that now that I've created this .NET dll I have to
qualify everything which kind of sucks but I understand why it is
this way. IE:
Dim MyArray as MyNewLibrary.CustomArray
Is there any way that I can modify my .NET class library so that I can
just refer to it from VB6 as CustomArray?
Thanks,
Kris