Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

borland compiler?

Status
Not open for further replies.

hughLg

Programmer
Feb 18, 2002
136
MY
I'm using C++ development tool named C++Builder produced by Borland. In this development environment, I can use a function named gotoxy() from conio.h header file. Unfortunately, help files for this development tool is not available. I am unable to find out further informations in using it. Anyone got its help files or resources?
 
hi denniscpp,
this might help you.
-----------------------
gotoxy()

Positions cursor in text window

Declaration: void gotoxy(int x, int y);

Remarks:
gotoxy moves the cursor to the given position in the current text window.

If the coordinates are invalid, the call to gotoxy is ignored.

Example of invalid coordinates:
gotoxy(40,30) /* (35,25) = window's bottom right position */
------------------------

Bye

nilux #include<NoOneLivesForever>
 
how about if I want to know the current cursor position? is there any function to do that?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top