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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ac6e650e2adbc584,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-21 13:36:28 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!intgwpad.nntp.telstra.net!news.telstra.net!nsw.nnrp.telstra.net!not-for-mail From: "ProLogic" Newsgroups: comp.lang.ada Subject: Data Structures 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 X-Original-NNTP-Posting-Host: 203.221.65.121 Message-ID: <3ceaafcd@news.comindico.com.au> X-Original-Trace: 22 May 2002 06:36:29 +1000, 203.221.65.121 Organization: Comindico Australia Pty Ltd Date: Wed, 22 May 2002 06:35:42 +1000 NNTP-Posting-Host: 203.194.27.1 X-Complaints-To: abuse@telstra.net X-Trace: nsw.nnrp.telstra.net 1022013387 203.194.27.1 (Wed, 22 May 2002 06:36:27 EST) NNTP-Posting-Date: Wed, 22 May 2002 06:36:27 EST Xref: archiver1.google.com comp.lang.ada:24480 Date: 2002-05-22T06:35:42+10:00 List-Id: I'm trying to create a data structure then a dynamic array to that structure. package Nick is NickName: String := ""; Hops: Integer := 0; SignOn: Integer := 0; Identd: String := ""; Address: String := ""; Host: String := ""; Unused: Integer := 0; Name: String := ""; VWAddress: String := ""; Modes: String := ""; --Channels: array(positive range <>) of String := ""; procedure setNickName(NickName: in String); end Nick; Could someone help me with the comment code there too please? I need a dynamic array of Strings In data.ads I have the following, which doesn't work... Nicks: array (positive range <>) of Nick; Thanks for your help...