From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c7b30cb68d25aebb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-08-13 22:16:58 PST Message-ID: <3F3B1B32.F5DFE6E1@fakeaddress.nil> Date: Thu, 14 Aug 2003 07:16:34 +0200 From: Gautier Write-only X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: DOS or Windows Console I/O References: <8Gx_a.2094$jw4.1318@nwrdny03.gnilink.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 80.218.249.250 X-Trace: news.swissonline.ch 1060838217 80.218.249.250 (14 Aug 2003 07:16:57 +0200) X-Complaints-To: abuse@swissonline.ch Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!syros.belnet.be!news.belnet.be!colt.net!diablo.theplanet.net!zen.net.uk!news.imp.ch!news.imp.ch!news-zh.switch.ch!switch.ch!news.swissonline.ch!not-for-mail Xref: archiver1.google.com comp.lang.ada:41425 Date: 2003-08-14T07:16:34+02:00 List-Id: For Windows I'd look at... http://users.ncrvnet.nl/gmvdijk/packages.html#CONSOLE For DOS (and GNAT) you'll in dos_paqs.zip, URL below, ------------------------------------------------------------------------------ -- File: pctextsc.ads -- Description: Simple Text Screen unit for PC (GNAT/DOS Ada compiler) -- Intended compatibility with Turbo Pascal CRT unit. ------------------------------------------------------------------------------ package PC_TextScreen is screen_base_x: integer:= 1; screen_base_y: integer:= 1; procedure TextMode(mode:integer); procedure GotoXY(x,y:integer); procedure PutXY(x,y:integer; s:string); function WhereX return integer; function WhereY return integer; procedure ClrScr; end PC_TextScreen; You can extend it as you like... HTH ________________________________________________________ Gautier -- http://www.mysunrise.ch/users/gdm/gsoft.htm NB: For a direct answer, e-mail address on the Web site!