From: T DOT Harte AT bigfoot DOT com (Thomas Harte) Newsgroups: comp.os.msdos.djgpp,rec.games.programmer Subject: Re: What's the djgpp's equivalence of "settextposition ()"? Date: Sat, 01 Nov 1997 00:50:04 GMT Organization: BT Internet Lines: 8 Message-ID: <345a7c7e.17891933@news.btinternet.com> References: <01bce5cd$cf1ef460$250867d1 AT username> NNTP-Posting-Host: host5-99-56-246.btinternet.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk >What's the djgpp's equivalence of "settextposition ()"? Thanx. From the top of my head, using stdio.h you can use gotoxy(x,y), although just to annoy you x and y are in the range 1-80 and 1-25 (on a normal screen), and not 0-79 and 0-24 as might be more naturally expected from a programming thing. -Thomas