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,ed4011963372c6e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-05 14:46:31 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed00.sul.t-online.de!t-online.de!blackbush.xlink.net!blackbush.de.kpnqwest.net!scapa.de.kpnqwest.net!194.121.123.2!193.141.58.34 From: "Axeplyr" Newsgroups: comp.lang.ada Subject: Re: LONG POST - ObjectAda 7.1 Special Edition - how do I use my own packages? Date: Mon, 5 Nov 2001 23:42:30 +0100 Organization: KPNQwest Germany GmbH, customer reader site Message-ID: <3be715cf$1@194.121.123.2> References: NNTP-Posting-Host: 194.121.123.2 X-Trace: newsreader2.lb-lan.ka.de.kpnqwest.net 1005000179 4720 194.121.123.2 (5 Nov 2001 22:42:59 GMT) X-Complaints-To: "abuse@de.kpnqwest.net" NNTP-Posting-Date: Mon, 5 Nov 2001 22:42:59 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2462.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 X-Original-NNTP-Posting-Host: 193.141.58.34 Xref: archiver1.google.com comp.lang.ada:15875 Date: 2001-11-05T23:42:30+01:00 List-Id: Thanks, Frank. I figured that out a little while ago when I double-checked my code with the book. DUH! I guess I learned a pretty good lesson that time - Thanks for all your help, John "Beard, Frank" wrote in message news:mailman.1004997729.7738.comp.lang.ada@ada.eu.org... > In this particular case, it is not a package visibility problem. > The procedure MoveCursor has two arguments in the spec: > > PROCEDURE MoveCursor (Column : Width; Row : Depth); > > But, in the body it has no arguments: > > PROCEDURE MoveCursor IS > > It should be: > > PROCEDURE MoveCursor (Column : Width; Row : Depth) IS > > Hence, the compile error: > > > screen.adb: Error: line 32 col 1 LRM:3.11.1(6), Completion required for > > specification 'MoveCursor', Continuing > > Frank > >