Message-ID: <3767040E.D96FDD89@computerpro.com> From: paradise AT computerpro DOT com X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Full Screen I/O? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 22 Date: Tue, 15 Jun 1999 20:55:27 -0500 NNTP-Posting-Host: 206.147.79.145 X-Trace: newsfeed.slurp.net 929497938 206.147.79.145 (Tue, 15 Jun 1999 20:52:18 CDT) NNTP-Posting-Date: Tue, 15 Jun 1999 20:52:18 CDT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com How is full screen I/O with DJGPP in C++ acomplished? For example, if I write the code: #include #include int main() { ScreenClear(): cout << "Hello World"; return 0; } Compiled and executed, this would clear the screen and print Hello World to the screen at the current curser position. Could someone rewrite the above code and include lines to change the current cursor position to say the upper left hand corner of the screen? This would really help me get unstumped. any help would surely be appreciated paradise