I'm new to Visual C++ and for the most part, IDE's. I made an application and built the release, but when I put the executable on my jump drive and tried to run it on a different computer, it said it couldn't run it. I feel like I'm asking a really dumb question, but how do I set it up build an executable that is ready to go

How do I make a stand-alone application in VC++
omegarazor
StoneWasHere
Another way is to just use /MT and link statically to the CRT. Take a look at this previous post dealing with similar issue: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=123250&SiteID=1
Hope this helps!
Thanks,
Ayman Shoukry
VC++ Team