I'd like to write:
Private Declare Sub MySub Lib App.Path & "\Mydll.dll" (MyParam As ...)
rather than
Private Declare Sub MySub Lib "C:\VB\Projects\MyProj\Mydll.dll" (MyParam As ...)
but unfortunately this is not allowed.
Is there any way round or some trick to make the declaration path a relative one? I like to keep the dll in the app (and not in the Windows) directory because I'm often making changes and updates to it.
