gotoxy() in VC++ 6.0

Started by
3 comments, last by willzofsteel 22 years ago
Hello all, I was wondering if anyone could tell me if there is a VC++ equivalent to the borland compiler function gotoxy()? it allows you to direct output to areas of the screen, designated by coordinates like (1,1) thank you for your help in advance. willzofsteel
Advertisement
Yes there is something like MoveTo if you''re using MFC classes or MoveToEx if you want to use classic Win32 API.

SetConsoleCursorPosition

[ GDNet Start Here | GDNet Search Tool | GDNet FAQ | MS RTFM [MSDN] | SGI STL Docs | Google! ]
Thanks to Kylotan for the idea!
there are few more features you might be interested in..

http://qsoft.ragestorm.com/tutors/windows/console.txt

good luck

Arkon
[QSoft]
The Goto(X,Y) is just like in Borland. you can get it with the #include <conio.h>

This topic is closed to new replies.

Advertisement