Does anyone know how to use a DLL in VB? Thanks.
Printable View
Does anyone know how to use a DLL in VB? Thanks.
If its a Active X DLL, register it using Regsvr32 dllpath and reference it in your VB program from project - > references and then use it. Otherwise you can just declare functions exported by this DLL if its a Standard WIN32 DLL.Quote:
Originally posted by carp
Does anyone know how to use a DLL in VB? Thanks.
How do you know what the functions are?
use the object browser to find out the class members. or press F2 :P