Page 1 of 1

cannot see the result

Posted: 27 May 2014 12:29
by CLjack
I am a newer, when I learn the example of Hello World on the website, there is no problem during the debug,but when I excute the program, I found that the time the result show in the command window is too short to see. Is there any solution for this problem?

Posted: 27 May 2014 12:47
by Thomas Linder Puls
I assume you are referring to the Hello World video.

A console (command line) program will run in a Windows shell (command prompt), but as soon as the program terminates the shell will also close, leaving little time to observer the result.

However, Ctrl+F5 (Build -> Run in Window) will run the program in a shell that stays open (until you press a key).

Re: Thanks a lot!

Posted: 27 May 2014 13:59
by CLjack
Thomas Linder Puls wrote:I assume you are referring to the Hello World video.

A console (command line) program will run in a Windows shell (command prompt), but as soon as the program terminates the shell will also close, leaving little time to observer the result.

However, Ctrl+F5 (Build -> Run in Window) will run the program in a shell that stays open (until you press a key).

Thank you very much for your timely reply. I have tried the solution you offered for my question, it's very useful! So, thank you again for your help!