I have already built a project, and run it in VS2010.
But if I want to run the .exe on other computers which does not install Visual Studio, it will need .dll files (such as msvcrt.dll and msvcp60.dll in WINDOWS\SYSTEM32, and some other dlls in the development package). I didn't use MFC in this project. How to static link all these dlls into the .exe file in Visual C++ so that I don't have to copy all the dlls to the other machines?
BTW: I don't want to make install package either
Thanks Siba