Can you declare functions for a DLL created in VB? If so, does it gain you anything over referencing the DLL?
Printable View
Can you declare functions for a DLL created in VB? If so, does it gain you anything over referencing the DLL?
Nope, you can only create ActiveX DLLs in VB, therefore you will need to reference them. If you create static DLLs in C/C++ then you wil need to use Declare statement in order for you to use them.