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...
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.
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