tags:

views:

28

answers:

2

i have download visual c++ 2010 everything is fine but only one problem is that it has not run method- start without debuging why? how can i run project?

A: 

Unless it's changed it should be to just press Ctrl-F5 to run it without the debugger.

ho1
thanks everybody
+1  A: 

You are probably using the Express Edition of Visual C++ 2010. Some functions have been hidden by default in these editions. I believe the Microsoft's intention behind this is to not confuse novice users as much.

Either use the keyboard shortcut (Ctrl+F5) or switch Visual C++ 2010 Express into Expert Mode. The Expert Mode setting can be found in the menu "Tools" under "Settings":

Screenshot of the Expert Settings option in Visual Studio Express

Cygon