Hi all,
I have a not COM dll and I want to use it from a
VB application. So I have to declare it as an API,
Public Declare Function XXXX Lib _
"C:\.....\XXXX.dll" _
(ByVal ..., _
ByVal ...) As Long
Is there a way to declare this function, but specifying a dynamic path. If I try to do the following I get an error (file not found).
Public Declare Function XXXX Lib _
"XXXX.dll" _
(ByVal ..., _
ByVal ...) As Long
Thanks in advance.
God Bless.