vote up 0 vote down star

Hi

I'm an extreme VC++ newbie. I have a C++ driver I'm trying to compile, and it has this line in the code:

#import "msado15.dll" no_namespace rename("EOF", "EndOfFile")

But when I compile the project, I get the error:

Error 1 fatal error C1083: Cannot open type library file: 'msado15.dll': No such file or directory

I have the DLL, but where do I put it so that the compiler can see it?

TIA

Craig

flag

49% accept rate

4 Answers

vote up 1 vote down

Best way to know which you've obviously didn't try is is trial and error.
Usually it would the the project or solution directory.

link|flag
Well I tried a little, but not enough obviously! Thanks for the answer anyway :) – Craig Shearer Jan 5 at 22:47
vote up 1 vote down

You can place the DLL in the same path as the referencing file (.h) as you have done, alternatively you can modify the additional include paths for the LIB section of your project(s). In VC++ this will be:

Project | Properties | Configuration Properties | Linker | General | Additional Library Directories

This method can be useful if you are centralizing third party dependencies and you don't want to be forced to keeping the referenced file (.h) and DLL in sync via the same path.

See this MSDN link for further details.

link|flag
It's been a while since I did C++, but as a I recall, you shouldn't need to copy the DLLs. It should all be handled through the configuration properties as stated above shouldn't it? Anyway, since this is the only answer that even mentions the properties ... +1. – John MacIntyre Jan 6 at 0:53
vote up 0 vote down

OK, found it by reading the documentation. I just had to put it in the same folder as the referenced file (which was in a different location to the project source code).

link|flag
Good old RTFM. en.wikipedia.org/wiki/RTFM – Mark Ransom Jan 5 at 22:53
vote up 0 vote down

You need to have library files and function definition headers to do this. If you happen to don't have them, you would try dynamic loading of DLL using LoadLibrary and GetProcAddress, pointers for linking functions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.