Visual C++ Express How do I just run the app?

前端 未结 4 848
时光说笑
时光说笑 2021-01-25 11:52

I don\'t see how to just run an app in Visual C++ Express. Debug option is right there but how about running the app? I checked each button on above and right clicked everythi

相关标签:
4条回答
  • 2021-01-25 12:06

    You can do this by pressing Ctrl+F5. Or you could add it as a menu item (found this on the www):

     Tools -> Customize- > Commands tab -> Rearrange Commands -> Select Debug from Menu Bar dropdownlist -> Add -> Select Debug from Categories, Select Start without debugging from Commands -> OK.

    0 讨论(0)
  • 2021-01-25 12:17

    enter image description here

    The option might not be available by default on your toolbar, To set the Start without debugging button. You can goto and select Tools > Customize > Debug and then drag n drop it on your toolbar.

    enter image description here

    0 讨论(0)
  • 2021-01-25 12:19

    Without going into the IDE, I know that with default keybindings(keyboard shortcuts):

    • Ctrl+F5 will start without debugging
    • F5 will start with debugging.
    0 讨论(0)
  • 2021-01-25 12:24

    You can change the Solution Configuration to 'Release', which strips the majority of debugging information, but no matter what you do, if you execute it within the IDE it will take control of it to a certain extent.

    If I want to run a console app without interference from the IDE I just open another command prompt, cd to the debug/release directory (as appropriate) and execute it from there.

    0 讨论(0)
提交回复
热议问题