Thread: input

  1. #1
    mrukok
    Guest

    input

    is it possible to have the point in the console where the user inputs data to be ABOVE some output on the screen.
    for example, if you wanted the input to be in a box:

    display:

    input here:
    _______________________
    | |
    | |
    |_______________________|

    Code:
    cout << "input here:" << endl << endl;
    cout <<  "_______________________" << endl;
    cout << "|                                              |" << endl;
    cout << "| " ;
    // and somehow allow input to happen in here while already displaying output below
    cout << "                                             |" << endl;
    cout << "|_______________________|" << endl;
    is something like this possible?

  2. #2
    mrukok
    Guest
    the box seems to have turned out wrong, but im sure you know what i mean

  3. #3
    Registered User
    Join Date
    Feb 2003
    Posts
    162
    not in console....

  4. #4
    mrukok
    Guest
    figured not

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Problem grabbing k/b input
    By falcon9 in forum C Programming
    Replies: 2
    Last Post: 10-28-2007, 11:47 AM
  2. continues input
    By Matty_Alan in forum C Programming
    Replies: 2
    Last Post: 06-22-2007, 10:04 PM
  3. Input statement problem
    By une in forum C Programming
    Replies: 3
    Last Post: 05-29-2007, 11:16 PM
  4. For loop problems, input please.
    By xIcyx in forum C Programming
    Replies: 2
    Last Post: 04-22-2007, 03:54 AM
  5. Simple Console Input for Beginners
    By jlou in forum C++ Programming
    Replies: 0
    Last Post: 06-21-2005, 01:50 PM