Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Linking Library Files?

Status
Not open for further replies.

dkennington

Programmer
Jul 11, 2006
4
0
0
US
I need to Link mfc80d.dll. I THINK?

But I have no idea how to do this.

The microsoft help in the program was unbelievably uselesss.

Where do I do linking or where do I put the file?

Be specific please, I'm an idiot

Thanks,
Dave
 
You (and me) can't link dll: it's dynamically loaded library (executable code), not a linker source file.
It's a part of MS Visual Studio: debug version of MFC support. If you have properly installed Visual Studio, you have an access to this library (at debug session run time). As usually, it lives in system folder (winnt\system32, for example).
And as usually, no this library on user computers w/o Visual Studio. So you must distribute not Debug but Release versions of your projects.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top