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,e387e3de20c4f9c5 X-Google-Attributes: gid103376,public From: "Riyaz Mansoor" Subject: Re: Help? Date: 1999/11/22 Message-ID: <81b127$hnb$1@bunyip.cc.uq.edu.au>#1/1 X-Deja-AN: 551556714 References: <38382bef.0@silver.truman.edu> X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Complaints-To: news@uq.edu.au X-Trace: bunyip.cc.uq.edu.au 943261575 18155 172.20.69.157 (22 Nov 1999 09:06:15 GMT) Organization: University of Queensland X-MSMail-Priority: Normal NNTP-Posting-Date: 22 Nov 1999 09:06:15 GMT Newsgroups: comp.lang.ada Date: 1999-11-22T09:06:15+00:00 List-Id: assuming all these procedures are in the same package or the public part of another package (not likely) you'll be able to directly access the fields in the record. if not that particular package should have procedure/functions to access the fields of the record. in ada u can pass almost anything into a procedure/function. since you've already got the array, all u have to do is loop thru it till u get the matching record. the condition would be record(count).field = whatever_u're_checking i hope that's ok riyaz