Run time link error! New to version 7 .NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Debugger:: An unhandled non-continuable STATUS_DLL_NOT_FOUND exception was
thrown during process load

I have put in the LIBPATH directive to the directory containing the .libs of
interest and I have placed the library names in the command line window.
MSVC++ still can't find the .lib/dll which are all in the same directory.
What else do I need to do to link???? This worked fine in MSVC++ 6!
 
Noel Angel said:
Debugger:: An unhandled non-continuable STATUS_DLL_NOT_FOUND exception was
thrown during process load

When I arrange to reproduce this error, I also get a messagebox naming the
*.dll that can't be found. Do you as well?
I have put in the LIBPATH directive to the directory containing the .libs of
interest and I have placed the library names in the command line window.

I don't think LIBPATH has anything to do with this.
MSVC++ still can't find the .lib/dll which are all in the same directory.

The .lib and .dll are in the same directory as each other do you mean? Most
likely you need to put the .dll in the same directory as the program, but
the LoadLibrary documentation lists all the places the OS will look for it
before giving up.
 
Back
Top