With TurboC, I could use gotoxy() without any problems, but now that use Visual C++, I get an error saying it can't find gotoxy?? Would anybody have a clue of what I could do to fix this? Maybe I'm missing a librairy?
: Hi, : : With TurboC, I could use gotoxy() without any problems, but now that use Visual C++, I get an error saying it can't find gotoxy?? Would anybody have a clue of what I could do to fix this? Maybe I'm missing a librairy? : : Stef : :
gotoxy() is a Borland-specific function and does not exist in other compilers. Here's some examples
Comments
:
: With TurboC, I could use gotoxy() without any problems, but now that use Visual C++, I get an error saying it can't find gotoxy?? Would anybody have a clue of what I could do to fix this? Maybe I'm missing a librairy?
:
: Stef
:
:
gotoxy() is a Borland-specific function and does not exist in other compilers. Here's some examples
http://www.codexxi.com/
Look up
SetConsoleCursorPosition(...)
in your help files or on msdn at Microsoft.
Hope it helps.
Pappy
You learn something new everyday.