Results 1 to 7 of 7

Threaded View

  1. #7
    JustAnoobROTMG's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,916
    Reputation
    185
    Thanks
    18,230
    You are compiling a console application.
    By design the "standard output window" is closed when the program is terminated. It also doesnt allow input by default (i wont talk about cmd options)
    If you want to keep the window opened just let the program run , do not terminate it.

    while(true)
    {
    processing
    }

    User will need to press ALt+F4 or the red cross to close it.

    But most of the time its an horrible way of programming. You should put some failsafe mechanism in "processing" in order to avoid terrible side effects like infinite loops. The program must be able to break free from the loop in case of error and exit properly. Or just DONT DO THAT !

    If i where you, i would simply launch the compiled program from the a bat/cmd file . It should work with a "pause "command in the cmd script..wait.... pause will still require user input haha
    Last edited by JustAnoobROTMG; 03-28-2014 at 07:27 AM.
    Due to a recent DMCA takedown attempt we had to remove Faintmako brain. Please do not paid attention to what he say or do.


Similar Threads

  1. how/why did you get into learning a coding language
    By maiyahi1 in forum C++/C Programming
    Replies: 19
    Last Post: 07-24-2009, 11:00 PM
  2. how do u disable the antivirus thingy
    By jasonrocks in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 02-13-2009, 03:25 PM
  3. how do you extract info into folder
    By jmcmuffin in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 01-11-2009, 01:12 PM
  4. (help) how do u disable the uac?
    By sillo990 in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 10-17-2008, 08:27 PM
  5. Can someone teach me how to convert a bypass into a adress
    By frono15 in forum Programming Tutorial Requests
    Replies: 2
    Last Post: 05-18-2008, 11:38 AM

Tags for this Thread