My application when opened in others computer will give an error missing msvcr\"something\".dll, I found out that to fix this they need to install the following: http://www.micr
Because a lot of Programms use the functionality of these dll's they are dynamically linked.
So your filesize stays small and in case of fixes within the dll you dont have to recompile your program.
If you dont want this behaviour you can set in the projectsettings the dll's to "static linked" (/MT). That way they will be compiled into your executable
Here is a relevant MSDN-article