Background: We have a COM object written in C#. We are working with another company that has code written in VB6. We need to send them VB6 code that creates and calls objects/methods from our COM object.
I created a .tlb file from the C# COM DLL file using RegAsm.exe provided by Microsoft. I then added this .tlb file as a reference in VB6 (Project->References->Browse...). It is also checked under Available References. It is not registered as COM+.
I used this article (C#/VB6 COM Example) as a reference for all this.
Problem: The issues is that I'm referencing this COM object in my VB6 project, but none of the objects/methods/namespaces show up. There must be something simple I'm missing, but what is it? Do I need to register this as COM+, or is the problem something else?
EDIT: More info about the project
OK, so I now have access to the source code, but apparently I was mistaken. It is in C++, not C#. Our test app for the C++ COM object was in C#, but the COM object itself is C++.
Now, my new question is how do I interface with this C++ DLL. My college mentioned that it "isn't a real COM object" so is there a way to interface with it other than adding it as a reference? If not then how do I make it into a COM object?
I need to access and use functions as well as objects from this DLL.