From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 12 Aug 93 19:25:20 GMT From: news.crd.ge.com!e7sa!groleau@uunet.uu.net (Wes Groleau x1240 C73-8) Subject: Re: Unconstrained arrays Message-ID: List-Id: In article <9308111528.aa04642@Paris.ics.uci.edu> kanderso@mabillon.ICS.UCI.EDU (Kenneth Anderson) writes: > Viewers : str_array(1 .. 1) := (Create("text_artist")); >--### A:error: RM 8.3: no visible identifier is of type str_array Part of the problem is that Verdix (the "ghostwriter" of SunAda) apparently hired non-English speakers to write their English error messages. MANY of their message do not state what the problem actually is. Others are on the right track, but taken literally say exactly the oposite of what they meant. The other part is one of Ada 83's imperfections (if you're Ted Holden, that's another word for federal disaster area). The fix is: Viewers : str_array(1 .. 1) := ( 1 => Create("text_artist") ); BTW, Create looks like something in one of those packages I complained about in my other post, and so does the name DynamicString. Are you stuck with that package? If not, are you in a hurry? I could give you my package, but it would take me a while to transfer it from a closed system to the Internet. Wes G.