Hello, very new to VS itself, need help on probably something simple.

Hi,
   I'm used to using visual studio 6.0 and when I usually debugged I had no problems...ran my programs fine. Although, in 2005 when i Debug in the command box it never lets me see my ending result, the command box shuts off automatically toward the end of my program while im testing it out. This is probably a very easy task for an experienced user of VS, can anyone help Thanks a bunch.Tongue Tied


Answer this question

Hello, very new to VS itself, need help on probably something simple.

  • antleite2001

    Thanks alot, It works now! now I can shut off the program on prompt. the codes didn't work, either that or i didn't input them correctly. F5 did not work but STRG+F5 did, thanks a bunch martin.

  • Jwborc39963

    When I launch with Strg+F5 or F5 I get the questiuon to hit a key to exit the program.

    You can also place some code that will stop the execution


    #ifdef _DEBUG
    // wait for a key presses
    _getch();
    #endif

     


  • Hello, very new to VS itself, need help on probably something simple.