Everywhere people are suggesting how to let visual studio know when visual studio at run time doesn't find a dll. But I want to know where do I remove the option so that visual studio at run time doesn't try to find a dll file? I have a similar question about it yesterday with no answer in here.
问题:
回答1:
Several options are available:
Remove the import library file from your project. Go to the Visual Studio linker settings and remove the entry (
Properties -> Linker -> Input
).If the library is specified by a
#pragma comment(lib:"xxxx")
(http://support.microsoft.com/kb/153901), then remove that line from your source file(s) and rebuild your application.If you really want to use the library, but only if certain runtime conditions are met, then use
1.
or2.
above, but change your source code to useLoadLibrary
andGetProcAddress
to dynamically load the library and obtain the function pointers at runtime.
There is also a thing called Delay Loaded DLL's
. If this is what you're after, here is the link to the information: http://msdn.microsoft.com/en-us/library/151kt790.aspx