Writing at specific coor in console

I'm trying to write at a specific xy coordicate in the console.

I'm using Microsoft Visual Studio and conio.h won't work when I try putchxy.

So, how can I write at specific coordinates with C++ using MVS?

Thank you
Check out the title 'Can't get 'GetKeyState' to work.. ' in this forum. There is a program shown that uses a gotoXY() function, that should be exactly what you need. Just make sure you also use the lines with
HANDLE console = GetStdHandle(STD_OUTPUT_HANDLE);
COORD CursorPosition;
.

whitenite1

Thank you vm
Last edited on
Topic archived. No new replies allowed.