Discussion:
Stationary cursors in vs and gotoxy
(too old to reply)
Jack
2009-08-12 10:54:57 UTC
Permalink
Hello,
How do people in the early age of computing achieve stationary cursors
while the dos prompt is counting something (or refreshing) in C?
How do I get gotoxy effect like in Borland C++ 3.1
in Visual Studio?
Thanks
Jack
Carl Daniel [VC++ MVP]
2009-08-12 14:28:55 UTC
Permalink
Post by Jack
Hello,
How do people in the early age of computing achieve stationary cursors
while the dos prompt is counting something (or refreshing) in C?
How do I get gotoxy effect like in Borland C++ 3.1
in Visual Studio?
Visual Studio is not really relevant to the question - it's the Windows API
that you're asking about.

The answer is SetConsoleCusorPosition

http://msdn.microsoft.com/en-us/library/ms686025(VS.85).aspx

-cd
Jack
2009-08-13 05:16:15 UTC
Permalink
Thanks Carl

Loading...