R
Rita
I use a function in a DLL.
My declare is as follows:
Public Declare Function Func1 Lib "MyFuncs.dll" () As Long
This only works when my dll is placed in the "Default
database folder" (options, general). I can specify the
Default folder to be somewhere else - but a better
solution would be to specify the full path to MyFuncs.dll
Public Declare Function Func1 Lib "c:\sample\MyFuncs.dll"
() As Long
This - however - does not work....
What should I do?
My declare is as follows:
Public Declare Function Func1 Lib "MyFuncs.dll" () As Long
This only works when my dll is placed in the "Default
database folder" (options, general). I can specify the
Default folder to be somewhere else - but a better
solution would be to specify the full path to MyFuncs.dll
Public Declare Function Func1 Lib "c:\sample\MyFuncs.dll"
() As Long
This - however - does not work....
What should I do?