Hi Friends,


I need to use a dll in my VC++ 6.0 console project, what could be the necessary steps to import the dll into our project.

Actually i was advised to do as follows,

i was assumed of having a VB ActiveX DLL with a class called Test, which has a method called TryItOut().
[code=cpp]
#import "test.dll" no_namespace named_guids
void main()
{
_TestPtr...