-
Not DLL again
I have a C++ DLL and need to load it and call some of it functions
from another C++ program.
I only know name of DLL and nothing else.
What is the best way to load DLL and call its functions providing
I do not have nor .lib file , or any functions from that DLL.
Thank ya all !:mad: :mad:
-
Is this a COM or normal DLL?
-
-
You can use OLEVIEW.EXE (after you regsiter it) to see what methods and properties it exposes.
If you're lucky, the VB Object browser (after you reference the file in the VB IDE) may find type library information - enough to allow you to use the COM object. ...assuming you have VB
-
It's a bit hard to implement a COM client in C++. You have to use some COM API calls to make it easier. Check out this tutorial.
-