Search:

Type: Posts; User: asafze

Search: Search took 0.01 seconds.

  1. Thread: _beginthread

    by asafze
    Replies
    2
    Views
    2,541

    _beginthread

    i'm using borland 5.00 and whenever i try to compile a program with _beginthread or _endthread in it i get a "call to undefined function" error, even though i have <process.h> included.
    any one have...
  2. Replies
    1
    Views
    1,261

    arcade style name input function

    ok, i'm making a game and i want it to have an arcade style name input function if you get a high score.
    it needs to use the up and down keys to change the letter and then enter to accept and go to...
  3. Thread: high score

    by asafze
    Replies
    2
    Views
    1,141

    Thanx man, i would never have even thought you...

    Thanx man, i would never have even thought you could do that.
  4. Thread: high score

    by asafze
    Replies
    2
    Views
    1,141

    high score

    i need to make a high score list for a game i'm programming, but i want it to have the old school arcade type 'enter your name' screen where it just flashes an A and then you hit up or down to scroll...
  5. Thread: window command

    by asafze
    Replies
    1
    Views
    953

    window command

    i've got a window set up as window(25,1,58,23); in a function, and i need it to return to default when it goes back to main. does anyone know how to set it to default, is there a command that just...
  6. Replies
    12
    Views
    1,259

    the loop will continue until the condition is...

    the loop will continue until the condition is false.
    Fahrenheit is 0
    while UPPER is 300
    so Fahrenheit == UPPER is false thus the loop exits.
    Try it with !=
  7. Thread: cursor question

    by asafze
    Replies
    3
    Views
    1,371

    windows xp borland c++ 5.02 using stdio,...

    windows xp
    borland c++ 5.02

    using stdio, conio, ctype, stdlib, windows header files.
  8. Thread: cursor question

    by asafze
    Replies
    3
    Views
    1,371

    cursor question

    In my program i have a loop making some *'s scrol around some text, like a border, i have done it using gotoxy(x,y); to move the cursor and replace whats there to make it scroll but the little white...
  9. Replies
    3
    Views
    4,740

    Thanx

    sweet. thanx for that, works like a dream.
  10. Replies
    3
    Views
    4,740

    input without pause

    I have a while loop that i want to keep going until the user presses enter, i have tried using
    while (getch()!=13)
    {
    commands
    }
    and other variations, but every command i know pauses the loop...
Results 1 to 10 of 10