how to insall vc++ program in other system

hi,

i ve developed a program its working fine in mine PC
but when i cut and paste the debug in other PC its not working
i dont want to install the visual studio in the other pc
and my visual studio doesnt have setup and deploy option.


is there a special dll files that i need to install
to make it work...

Please help.

Regards
rinu
If I remember good you need to download MS Redistributable Package at first, if you're using VC 2008 here you can download it:
http://www.microsoft.com/downloads/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&displaylang=en

Note:

If you're using .NET (CLR) constructs in your code , all target machines must have installed .NET framework
Last edited on
You can also change some project linker properties to make your program running
BTW you shouldn't run the debug build of your program in other computers, you should use the release one.

Thanks guys,

how will i change the project linker properties? and release mode?
sorry if its a really dump question am new to this :(

regards
rinu
For the linker setting:
Project > Properties > Configuration Properties > C/C++ > Code Generation > RunTime Library > Multy threaded (/MT)
This will make your program statically link to the C++ library so you won't need the redistributable package

To choose the 'Release' mode, you should change the value on a drop down lint in the menu bar. The default value is 'Debug'
In this snapshot I found on Google you can see it on the upper-right corner between the green arrow and "Win32":
http://www.dacs.org/archive/0802/images/Visual%20C++%20Express.jpg
Topic archived. No new replies allowed.