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,fa56c83118d748b8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-04-18 20:40:27 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc54.POSTED!not-for-mail From: "Steve" Newsgroups: comp.lang.ada References: <20030418120111.2cea818c.david@realityrift.com> Subject: Re: GNAT Ada - Clear Screen X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: NNTP-Posting-Host: 12.211.13.75 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc54 1050723627 12.211.13.75 (Sat, 19 Apr 2003 03:40:27 GMT) NNTP-Posting-Date: Sat, 19 Apr 2003 03:40:27 GMT Organization: AT&T Broadband Date: Sat, 19 Apr 2003 03:40:27 GMT Xref: archiver1.google.com comp.lang.ada:36300 Date: 2003-04-19T03:40:27+00:00 List-Id: "Fingertip" wrote in message news:newscache$ahdjdh$dso$1@lnews.actcom.co.il... > David Holm wrote in > news:20030418120111.2cea818c.david@realityrift.com: > > > Hi, > > there is an ncurses binding for Ada. I suggest you get that if you > > want to be able to do advanced console manipulations that work on all > > kinds of terminals. > > > > //David Holm > > > > As a beginner programmer in ada, can you be a bit more specific? > > What is a binding? Where can I find the one you are talking about? Some things you would like to program which are not "built in" to the programming language (like clearing the screen). To perform these operations you must call routines that are not built into the language, and are operating system specific. "Bindings" refer to the code that permit you to access libraries from Ada. A good source of bindings and general information is found at: http://www.adapower.com You'll also find a lot of links to other good sites there. For clearing the screen go to: http://users.ncrvnet.nl/gmvdijk/packages.html And take a look at the NT/Win95 Console package. I think it has what you're looking for. Steve (The Duck) > Thanks! > > Fingertip