I'm using MVC++ 2010 and I find it irritating that every time I send someone a project I have to include
msvcp100.dll
msvcp100d.dll
msvcr100d.dll
in the folder. Is there a way to including them in the exe?
Build in Release mode instead of Debug mode. Normally there is a dropdown for this.
Link the CRT statically and you don't need any dll's.
Build in Release mode and this is done for you's.