
Design vs RUN mode and DLLs
Quote:
>The LIB clause is where the application
>gets the path to the DLL to load.
I never found a path stored in compiled modules. The DLL _must_ reside
either in the app directory, or in the Windows path.
Perhaps you can try an explicit LoadModule, and give a path there, then
the module is used in subsequent calls to the Declared functions. But don't
forget then, to unload the module at the end of the program!
DoDi