Hi
I register a dll, but when I add in the VB It return message
C:\WINDOWS\SYSTEM\PRC.DLL could not be loaded
What Happened ?
thank you in advance
Printable View
Hi
I register a dll, but when I add in the VB It return message
C:\WINDOWS\SYSTEM\PRC.DLL could not be loaded
What Happened ?
thank you in advance
Does it have any dependencies that aren't one your system?
- gaffa
Is the Dll a VbAx Dll or a C++ dll.What do you want to do with it.Call a function from the dll.
if it is a C++ dll then:
You can also load a dll using the LoadLibrary API Function.Code:Public Declare Function yourfunction Lib "PRC.DLL" (ByVal arguments) As something
You can't use LoadLibrary and it's associated functions in VB because there are no function pointers.
Is it a VB or C++ DLL??
Hi
The DLL made in VB
thank you very much