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-Thread: 103376,c0d4e990924eb044,start X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news1.google.com!Xl.tags.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.posted.plusnet!news.posted.plusnet.POSTED!not-for-mail NNTP-Posting-Date: Wed, 11 Mar 2009 15:26:41 -0500 Date: Wed, 11 Mar 2009 20:26:40 +0000 From: Tim Rowe User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Newbie question -- dereferencing access Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Message-ID: X-Usenet-Provider: http://www.giganews.com X-Trace: sv3-vMFLtC7dRvDunBhBhO58utK2yLPVuVRgsETkopnS8xlQvkCr8m4Tamkw+NIpSYBw+jFoxmjyPG7houF!VZ6ABT6YTKn7CoQ4CmDz3i3p03bXAGxDJ7iLPImEu1E6H3599qyvG4pBrTEBgR9snwt1OqjMnwN5!sEPtwqjL8I6m X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.39 Xref: g2news2.google.com comp.lang.ada:5018 Date: 2009-03-11T20:26:40+00:00 List-Id: If I have an access variable, for example: s: access string := new String'("Foo"); is there an easy way to assign from s to a string variable? Obviously I can't assign it directly, because access string is not string, so how do I convert? Everything I read says that dereferences happen automatically, but in this situation! TIA