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,FREEMAIL_FROM,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ba4b87d0297adb3,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-28 19:39:53 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!cyclone.bc.net!newsfeed.telusplanet.net!peer1-sjc1.usenetserver.com!usenetserver.com!pd2nf1so.cg.shawcable.net!residential.shaw.ca!news1.calgary.shaw.ca.POSTED!not-for-mail X-Trace-PostClient-IP: 24.68.22.66 From: "tr4ck" Newsgroups: comp.lang.ada Subject: Record help X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: Date: Wed, 29 May 2002 02:39:52 GMT NNTP-Posting-Host: 24.69.255.206 X-Complaints-To: abuse@shaw.ca X-Trace: news1.calgary.shaw.ca 1022639992 24.69.255.206 (Tue, 28 May 2002 20:39:52 MDT) NNTP-Posting-Date: Tue, 28 May 2002 20:39:52 MDT Organization: Shaw Residential Internet Xref: archiver1.google.com comp.lang.ada:24897 Date: 2002-05-29T02:39:52+00:00 List-Id: Say you have a record, which gets its data from a file. TYPE Data IS RECORD No : Integer; Name : String(1..20); END RECORD; Info: Array (1..10) OF Data; When you display the record you get: 1111 SomeName 1111 SomeName 1111 SomeName How is it possible to display just 1 line of 1111 SomeName instead of 3 (Assuming the file has the same info 3 times)?