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,3667e793a4ececfe X-Google-Attributes: gid103376,public From: "Carl Bauman" Subject: Re: Can I overwrite existing text w/o clearing the screen? Date: 1998/11/17 Message-ID: <72td6a$f9v$2@sienna.impulse.net>#1/1 X-Deja-AN: 413016991 References: <3650f8a9.0@silver.truman.edu> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 X-Complaints-To: abuse@impulse.net X-Trace: sienna.impulse.net 911357962 15679 204.182.12.40 (18 Nov 1998 02:59:22 GMT) Organization: Impulse Internet Services NNTP-Posting-Date: 18 Nov 1998 02:59:22 GMT Newsgroups: comp.lang.ada Date: 1998-11-18T02:59:22+00:00 List-Id: Josh Highley wrote in message <3650f8a9.0@silver.truman.edu>... >I've wrote a task to output the time. I want to continually update the >time every second in the lower right hand corner of the screen without >causing a new line and without clearing the entire screen. I've tried >set_col and set_line but it causes a new line. I've been successful >using AdaGraph v0.5 but its other input and output operations are very >limited. Basically, can I overwrite existing text without clearing the >entire screen or causing a new line? Hopefully, still having Ada's >input and output commands still available. > How close to the right are you writing? If your output is designed to place the last digit in column 80, the cursor will end up in column 81, which is off the screen and *seems* to make a NL, but really is a wrap-around. If this is the case, try writing starting one column to the left. -CB