-
VC++ help
In C programming if I wanna move the curosr I can use gotoxy() , and textattr() or textcolor() to change the text color.
But, in VC++, which common shall I use if I wanna move the cursor from one point to another? and also how to change the text color, blink?
-
You can use C commands in C++. Just import the relavant C libraries as <whatever.h> and use the gotoxy() and textattr() commands.
-
gotoxy() and textattr() are Borland specific commands. I don't think there are equivalent functions in VC++.
Cheers,
cgkanchi