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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MFC distribution files

Status
Not open for further replies.

TheCrappyProgrammer

Programmer
Sep 17, 2001
41
US
I have a completed MFC Application. The problem is that when I run it on another computer, it said some .dll files were missing. What files do I need to distribute along with my executable to make it run properly?
 
In the project settings General Tab, set MFC as "Use MFC in a Static Library". This will increase the size of the executable file. Another option is to create a setup package using Install Shield with all the required Dll's included.

Hope this helps

raochetan
 
Use the Depends.exe program to find out what DLL you're code is needed. Make sure that they are not the debug version of the DLLs. You are not allow the distributes the debug version of the DLLs.

Shyan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top