From: "Damian Yerrick" Newsgroups: comp.os.msdos.djgpp Subject: Re: gotoxy() Date: Tue, 31 Aug 1999 09:29:13 -0500 Organization: Rose-Hulman Institute of Technology Message-ID: <7qgovf$jjs$1@solomon.cs.rose-hulman.edu> References: <7qg0uj$c53$1 AT planja DOT arnes DOT si> <37cbacce DOT 53079521 AT news DOT snafu DOT de> NNTP-Posting-Host: yerricde.laptop.rose-hulman.edu X-Trace: solomon.cs.rose-hulman.edu 936109871 20092 137.112.100.95 (31 Aug 1999 14:31:11 GMT) X-Complaints-To: news AT cs DOT rose-hulman DOT edu NNTP-Posting-Date: 31 Aug 1999 14:31:11 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Lines: 26 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Horst Kraemer wrote in message news:37cbacce DOT 53079521 AT news DOT snafu DOT de... > On Tue, 31 Aug 1999 09:33:50 +0200, "Matej" > wrote: > > > Hello, > > Is there some function (which is ANSI compatible) similar to > > gotoxy()?? > > No. Neither in C nor C++ there is an ANSI compatible function to > control the screen. ANSI C and C++ don't know neither screens nor > keyboards. They conceptually write to teletypes. > > Screen control has to be done by platform- and compilerspecific > additional libraries. In DJGPP you will find gotoxy and comrades in > the non-ANSI header . They're the same in Borland's product, so you can assume they'll work on any DOS development system. > Regards > Horst >