Execute program
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hello! y Build an application using visual studio, but i don´t know what extra files do i need for execute de applicatión in a different machine Sergio
Which version of VC++ are you using? For most applications, they will have dependency on the C Run-time dlls. In VC++ 2003 and earlier, those CRT dlls are dropped to system32 folder and they just need to be on the path. You can figure out the names of the dlls by using depends.exe. In VC++ 2005, the CRT dlls are now distributed through Msms that needs to be merged into an Msi to get installed on the user's machine. You can search for VCRedist.exe on the microsoft website. Again - depends.exe should help you figure out those dlls. gmileka