Using C++ Dlls in a VB project
I'm trying to use a third party dll with very little documentation. The DLL was compiled in Visual C++, but I'd like to create an interface for it in VB 6.
Normally when I what to access public methods in DLLs I've built myself I just add it as a project reference, and this exposes the methods nicely.
Well when I try to add this DLL as a reference I get the message "Cant add a reference to the specified file.". Is there any way for me to work with this DLL? If so how?
Oh and as a secondary question...is there a tool with Visual Studio or another program which will give me as much info as possible about the public methods of this DLL? I can get a little bit in dependency walker but not as much as I would like.
thank you