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,6286c332c8cae43d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-25 19:02:36 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!130.133.1.3!fu-berlin.de!uni-berlin.de!ppp-1-50.cvx4.telinco.NET!not-for-mail From: "Nick Roberts" Newsgroups: comp.lang.ada Subject: Re: Text_IO.End_Of_File Problem Date: Mon, 26 Nov 2001 02:35:24 -0000 Message-ID: <9tsbca$4g95n$1@ID-25716.news.dfncis.de> References: NNTP-Posting-Host: ppp-1-50.cvx4.telinco.net (212.1.148.50) X-Trace: fu-berlin.de 1006743754 4727991 212.1.148.50 (16 [25716]) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Xref: archiver1.google.com comp.lang.ada:16964 Date: 2001-11-26T02:35:24+00:00 List-Id: Hambut, the basic answer is: you cannot mix Ada.Sequential_IO and Ada.Text_IO! The format in which Sequential_IO writes data is implementation-dependent, and may not even vaguely correspond to anything that Text_IO can read back. I have two questions for you: (1) WHY were you trying to write with Sequential_IO and then read with Text_IO? (2) WHAT do you really want to do? I will help you with (2) if I can (and if you require). -- Best wishes, Nick Roberts