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=-0.5 required=5.0 tests=BAYES_05,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a31acccf6053ab1b,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-24 15:09:43 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news.stealth.net!news.stealth.net!newsfeed.song.fi!newsfeed5.telia.com!194.22.194.4.MISMATCH!masternews.telia.net.!newsc.telia.net.POSTED!not-for-mail From: "Andreas Lans" Newsgroups: comp.lang.ada Subject: Array problem 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: Fri, 24 May 2002 22:09:41 GMT NNTP-Posting-Host: 194.237.160.178 X-Complaints-To: abuse@telia.com X-Trace: newsc.telia.net 1022278181 194.237.160.178 (Sat, 25 May 2002 00:09:41 CEST) NNTP-Posting-Date: Sat, 25 May 2002 00:09:41 CEST Organization: Telia Internet Xref: archiver1.google.com comp.lang.ada:24699 Date: 2002-05-24T22:09:41+00:00 List-Id: Thanks for all your help so far, I got the program working at least, but now a runtime error has started to come up, and the thing its complaining about is this: if(pairs <= 100) then Clients(Pairs) := new Male; Servers(Pairs) := new Female; Pairs := Pairs+1; Where Pairs is an integer, I thought I could use this to store Females and Males in the array but when I try this, it says: Illegal operand for array conversion, any thoughts on this??