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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,622fa0e87d54d0bb X-Google-Attributes: gid103376,public From: dewar@cs.nyu.edu (Robert Dewar) Subject: Re: Displaying positional text Date: 1996/07/28 Message-ID: #1/1 X-Deja-AN: 170966303 references: <4taun9$3i2@hq.hq.af.mil> organization: Courant Institute of Mathematical Sciences newsgroups: comp.lang.ada Date: 1996-07-28T00:00:00+00:00 List-Id: Joel asks "Is there an Ada95 package that allows you to display text at position(x,y) where x is the row, and y is the column (or something similar). I remember this capability in Ada83, but have been unable to find it in Ada95." There is no such feature in either Ada 83 or Ada 95, since obviously this is highly implementation dependent (for example, what are x and y? character addresses -- well that assumes a simple display model with a monospaced font -- pixel addresses? logical addresses?) A typical implementation of Ada 95 will provide features for this kind of access if they are appropriate to the system. See for example the packages provided with the DOS version of GNAT.