<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: GDL Parameter List in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77256#M39843</link>
    <description>Wow is this ever complicated. &lt;BR /&gt;
&lt;BR /&gt;
As stated, all I want to do is print out the parameters page (variables, name, type, values) for reference when scripting GDL. And I'd probably want to print it out repeatedly as the GDL script progresses.&lt;BR /&gt;
&lt;BR /&gt;
I don't want to learn or use SQL.&lt;BR /&gt;
I don't want to have to script things or tinker with the Calculate menu.&lt;BR /&gt;
I don't want to use screen shots or some cumbersome workaround.&lt;BR /&gt;
&lt;BR /&gt;
I can print out the 3D, 2D, Master, Interface &amp;amp; other miscellaneous scripts. All that's needed is the ability to print out all the info in the parameters window for reference. I'm actually kind of suprised that this function isn't already available.&lt;BR /&gt;
&lt;BR /&gt;
Cheers, Cameron</description>
    <pubDate>Wed, 07 Jul 2004 09:46:29 GMT</pubDate>
    <dc:creator>Vitruvius</dc:creator>
    <dc:date>2004-07-07T09:46:29Z</dc:date>
    <item>
      <title>GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77238#M39825</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Does anyone know of a quick method for printing out the GDL parameters for a symbol? The parameter window in the symbol doesn't seem to support printing and it would be a real asset when scripting GDL to have a print-out handy.&lt;BR /&gt;
&lt;BR /&gt;
Cheers, Cameron&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 10:13:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77238#M39825</guid>
      <dc:creator>Vitruvius</dc:creator>
      <dc:date>2023-05-24T10:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77239#M39826</link>
      <description>Cameron,&lt;BR /&gt;
&lt;BR /&gt;
It is a problem actually. What you can do though is copy the screen to clipboard and print that as image. When the parameter list is longer then the actual screen resolution I usually move and capture that and reassemble in Photoshop to one piece. It is a bit silly but this is the only way (to my knowledge) how to do that.</description>
      <pubDate>Tue, 29 Jun 2004 09:13:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77239#M39826</guid>
      <dc:creator>Rob</dc:creator>
      <dc:date>2004-06-29T09:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77240#M39827</link>
      <description>Thanks Rob - I suppose this is one we'll have to add to the wish list and hope they pick it up in the next release. I'd imagine it's fairly easy to implement.&lt;BR /&gt;
&lt;BR /&gt;
Cheers, Cameron</description>
      <pubDate>Tue, 29 Jun 2004 09:55:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77240#M39827</guid>
      <dc:creator>Vitruvius</dc:creator>
      <dc:date>2004-06-29T09:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77241#M39828</link>
      <description>I just got into SQL a little bit.&lt;BR /&gt;
It is a simple but powerful database query language.&lt;BR /&gt;
Within a couple of hours, you can start turning out nice results.&lt;BR /&gt;
If you go to Calculate\SQL\Query (make sure SQL is enabled from the lowermost drop-down list in Options\Preferences\Imaging and Calculation, so it appears in the Calculate menu) and type the following:&lt;BR /&gt;
&lt;BR /&gt;
SELECT O.PARAMETERS.NAME, O.PARAMETERS.TYPE, O.PARAMETERS.VALUE&lt;BR /&gt;
FROM FLAT(OBJECTS, PARAMETERS) AS O&lt;BR /&gt;
WHERE OBJECTS.LIBRARY_PART_NAME='Armchair 01'&lt;BR /&gt;
&lt;BR /&gt;
then click Execute,&lt;BR /&gt;
 you will get a table you want in a newly-created XML file.&lt;BR /&gt;
In place of 'Armchair 01' you may enter the name of the Library Object&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Laszlo&lt;BR /&gt;
&lt;BR /&gt;
..........&lt;BR /&gt;
Important addition based on James Murray's reply: make sure at least one instance of the Library Object is placed in the ArchiCAD Project.</description>
      <pubDate>Wed, 30 Jun 2004 12:04:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77241#M39828</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2004-06-30T12:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77242#M39829</link>
      <description>Lazslo,&lt;BR /&gt;
&lt;BR /&gt;
Very excited about this tip... except it didn't work. A result opened in the browser but it was empty.&lt;BR /&gt;
&lt;BR /&gt;
Any ideas?&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/16483i260BCEEBACF71900/image-size/large?v=v2&amp;amp;px=999" border="0" alt="queryresult.jpg" title="queryresult.jpg" /&gt;</description>
      <pubDate>Wed, 30 Jun 2004 13:54:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77242#M39829</guid>
      <dc:creator>James Murray</dc:creator>
      <dc:date>2004-06-30T13:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77243#M39830</link>
      <description>maybe you don't have an armchair in your library?  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_wink.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
~/archiben</description>
      <pubDate>Wed, 30 Jun 2004 15:43:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77243#M39830</guid>
      <dc:creator>__archiben</dc:creator>
      <dc:date>2004-06-30T15:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77244#M39831</link>
      <description>Hi James, &lt;BR /&gt;
Make sure at least one instance of the Library Object is placed on the Floor Plan. Since SQL gets data from the ArchiCAD drawing database, only what has already been placed once can be queried, I guess.&lt;BR /&gt;
First I tried it without placing one 'Armchair 01' object and got the same blank result you did. Then I placed one instance of it and it was correct.&lt;BR /&gt;
I think having the Object loaded in the Libraries is not enough, it must be placed.&lt;BR /&gt;
Laszlo&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/16485i5E29436524C26D57/image-size/large?v=v2&amp;amp;px=999" border="0" alt="SQLQueryResult.png" title="SQLQueryResult.png" /&gt;</description>
      <pubDate>Wed, 30 Jun 2004 17:30:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77244#M39831</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2004-06-30T17:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77245#M39832</link>
      <description>&lt;BLOCKQUOTE&gt;laszlonagy wrote:&lt;BR /&gt;at least one instance of the Library Object is placed on the Floor Plan. &lt;/BLOCKQUOTE&gt;

Duh...It is a database query, not a library query... &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_redface.gif" style="display : inline;" /&gt;  Thanks.</description>
      <pubDate>Wed, 30 Jun 2004 17:41:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77245#M39832</guid>
      <dc:creator>James Murray</dc:creator>
      <dc:date>2004-06-30T17:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77246#M39833</link>
      <description>One more question...&lt;BR /&gt;
&lt;BR /&gt;
Where can we find a reference for the AC-specific terms (O.PARAMETERS.NAME, etc)? Thanks,</description>
      <pubDate>Thu, 01 Jul 2004 01:08:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77246#M39833</guid>
      <dc:creator>James Murray</dc:creator>
      <dc:date>2004-07-01T01:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77247#M39834</link>
      <description>There is another way to put out a parameter listing (since ArchiCAD 8.0),&lt;BR /&gt;
there is a fuction called REQUEST ("ASSOCLP_PARVALUE",....&lt;BR /&gt;
with which you can do this.&lt;BR /&gt;
Combined with TEXT OUT you get a Text-File with a complete parameter listing. The routine was first written by Frank Beister and improved for text output by me. The object you can find in attachement as zip.file.&lt;BR /&gt;
If you want to use the routine, you only have to copy the master script to your library part and add a boolean parameter named "outdate_p".&lt;BR /&gt;
&lt;BR /&gt;
This could become an object for Franks opengdlboard on &lt;A href="http://www.opengdl.org" target="_blank"&gt;&lt;/A&gt;&lt;S&gt;&lt;A href="http://www.opengdl.org" target="_blank"&gt;&lt;/A&gt;&lt;A href="&amp;lt;/s&amp;gt;http://www.opengdl.org&amp;lt;e&amp;gt;"&gt;&lt;/A&gt;&lt;/S&gt;http://www.opengdl.org&lt;E&gt;&lt;/E&gt;</description>
      <pubDate>Sun, 04 Jul 2004 15:21:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77247#M39834</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2004-07-04T15:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77248#M39835</link>
      <description>&lt;BLOCKQUOTE&gt;laszlonagy wrote:&lt;BR /&gt;SELECT O.PARAMETERS.NAME, O.PARAMETERS.TYPE, O.PARAMETERS.VALUE&lt;BR /&gt;
FROM FLAT(OBJECTS, PARAMETERS) AS O&lt;BR /&gt;
WHERE OBJECTS.LIBRARY_PART_NAME='Armchair 01'
&lt;/BLOCKQUOTE&gt;

I followed your instruction minutely, but it reports that "a column" of that name couldnt be found. I wasnt looking for a column.&lt;BR /&gt;
I thought perhaps you meant 0 (zero) not O (capital 'oh') but it is O.&lt;BR /&gt;
 Where can one find out more about this language??&lt;BR /&gt;
&lt;BR /&gt;
 &amp;gt;&amp;gt;&amp;gt;david</description>
      <pubDate>Sun, 04 Jul 2004 18:08:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77248#M39835</guid>
      <dc:creator>david nicholson-cole</dc:creator>
      <dc:date>2004-07-04T18:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77249#M39836</link>
      <description>&lt;BLOCKQUOTE&gt;laszlonagy wrote:&lt;BR /&gt;If you go to Calculate\SQL\Query (make sure SQL is enabled from the lowermost drop-down list in Options\Preferences\Imaging and Calculation, so it appears in the Calculate menu) and type the following:&lt;BR /&gt;
&lt;BR /&gt;
SELECT O.PARAMETERS.NAME, O.PARAMETERS.TYPE, O.PARAMETERS.VALUE&lt;BR /&gt;
FROM FLAT(OBJECTS, PARAMETERS) AS O&lt;BR /&gt;
WHERE OBJECTS.LIBRARY_PART_NAME='Armchair 01'&lt;/BLOCKQUOTE&gt;

I discovered the problem!!! If you use single quotes, it works. If you use double quotes, it thinks you are looking for a column!! &lt;BR /&gt;
Also, it is Case sensitive!!!&lt;BR /&gt;
If you have three objects in the file, it lists all three. So if you want a typical set of parameters, make sure that only ONE is placed in the file.&lt;BR /&gt;
Generates a lovely table in Word. &lt;BR /&gt;
Thankyou very much Lazlo!</description>
      <pubDate>Sun, 04 Jul 2004 18:25:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77249#M39836</guid>
      <dc:creator>david nicholson-cole</dc:creator>
      <dc:date>2004-07-04T18:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77250#M39837</link>
      <description>Thanks for the valuable inputs - however - in respect of my original query: Yes the methodology described works but it's far from intuitive and it is time consuming vis-a-vis the simple act of hitting the 'print' key.&lt;BR /&gt;
&lt;BR /&gt;
How about it Graphisoft?</description>
      <pubDate>Tue, 06 Jul 2004 05:50:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77250#M39837</guid>
      <dc:creator>Vitruvius</dc:creator>
      <dc:date>2004-07-06T05:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77251#M39838</link>
      <description>&lt;BLOCKQUOTE&gt;Vitruvius wrote:&lt;BR /&gt;Thanks for the valuable inputs - however - in respect of my original query: Yes the methodology described works but it's far from intuitive and it is time consuming vis-a-vis the simple act of hitting the 'print' key.&lt;BR /&gt;
&lt;BR /&gt;
How about it Graphisoft?&lt;/BLOCKQUOTE&gt;

Well how about....? in the same way that Save As... is intelligent enough to know if you are saving a Plan, an Archive, an Image or many other things, why cant Save As (when you have the GDL Dialog in the foreground) include a choice of "parameter list". ?? - dumps out a tabbed table like the one from SQL.&lt;BR /&gt;
 Talking of which I noticed that the SQL query works well in Word, but if you paste it into a simpler word processor, the fields are NOT tab separated, so it would be difficult to paste into a spreadsheet. &lt;BR /&gt;
(Or am I wrong in this? I tried pasting into OS9's simpletext, which should preserve the Tabs).&lt;BR /&gt;
 &amp;gt;&amp;gt;&amp;gt;dnc</description>
      <pubDate>Tue, 06 Jul 2004 08:34:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77251#M39838</guid>
      <dc:creator>david nicholson-cole</dc:creator>
      <dc:date>2004-07-06T08:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77252#M39839</link>
      <description>Dear Laszlo,&lt;BR /&gt;
&lt;BR /&gt;
I've tried your SQL routine but cannot get the object parameter variables to print out - basically, what I am looking for is an object Parameter table with these columns:&lt;BR /&gt;
&lt;BR /&gt;
OBJECT PARAMETERS&lt;BR /&gt;
Variable       Name       Type       Value&lt;BR /&gt;
&lt;BR /&gt;
I want to be able to print this out to assist with writing GDL - it's currently too clumsy to have to review/remember long series of parameters &amp;amp; variables on screen.&lt;BR /&gt;
&lt;BR /&gt;
An interim workaround is fine, but ultimately I'd like to just hit the 'print' button when the Parameters window is active and have the above print out as a table.&lt;BR /&gt;
&lt;BR /&gt;
Regards, Cameron</description>
      <pubDate>Tue, 06 Jul 2004 09:19:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77252#M39839</guid>
      <dc:creator>Vitruvius</dc:creator>
      <dc:date>2004-07-06T09:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77253#M39840</link>
      <description>&lt;BLOCKQUOTE&gt;Vitruvius wrote:&lt;BR /&gt;I want to be able to print this out to assist with writing GDL - it's currently too clumsy to have to review/remember long series of parameters &amp;amp; variables on screen.
&lt;/BLOCKQUOTE&gt;

Perhaps there is another Criterion name in the SQL query that would reveal the names of the variables.... Laszlo??</description>
      <pubDate>Tue, 06 Jul 2004 09:52:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77253#M39840</guid>
      <dc:creator>david nicholson-cole</dc:creator>
      <dc:date>2004-07-06T09:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77254#M39841</link>
      <description>I checked the Graphisoft SQL help file: the PARAMETERS table contains only the variable name (which is actually its description) and the variable type, which is an integer number. &lt;BR /&gt;
With the variable type you can check the number and see what type it is in your Object. E.g. if the parameter is of length type, then the returned value in the Parameter type column is 2. &lt;BR /&gt;
I learned quite a bit about SQL at the following web site: &lt;BR /&gt;
&lt;A href="http://www.sql.org/" target="_blank"&gt;http://www.sql.org/&lt;/A&gt; &lt;BR /&gt;
 &lt;BR /&gt;
The Graphisoft SQL documentation can be downloaded from Graphisoft at &lt;A href="http://www.graphisoft.com/support/developer/documentation/" target="_blank"&gt;&lt;LINK_TEXT text="http://www.graphisoft.com/support/devel ... mentation/"&gt;http://www.graphisoft.com/support/developer/documentation/&lt;/LINK_TEXT&gt;&lt;/A&gt; &lt;BR /&gt;
It is part of the ArchiCAD ODBC driver documentation (ODBC Help). &lt;BR /&gt;
 &lt;BR /&gt;
In it there will be reference to required syntax as well, like single qoutes. &lt;BR /&gt;
Laszlo</description>
      <pubDate>Tue, 06 Jul 2004 14:52:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77254#M39841</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2004-07-06T14:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77255#M39842</link>
      <description>&lt;BLOCKQUOTE&gt;laszlonagy wrote:&lt;BR /&gt;The Graphisoft SQL documentation can be downloaded from Graphisoft at &lt;A href="http://www.graphisoft.com/support/developer/documentation/" target="_blank"&gt;&lt;LINK_TEXT text="http://www.graphisoft.com/support/devel ... mentation/"&gt;http://www.graphisoft.com/support/developer/documentation/&lt;/LINK_TEXT&gt;&lt;/A&gt; &lt;BR /&gt;
It is part of the ArchiCAD ODBC driver documentation (ODBC Help).&lt;/BLOCKQUOTE&gt;

Thank you, Laszlo.&lt;BR /&gt;
&lt;BR /&gt;
GS, may we please have a non-Mac-hostile version of this documentation?&lt;BR /&gt;
&lt;BR /&gt;
I understand that the ODBC driver is windows-only, but the SQL is not. It's a feature of AC itself, and the documentation should be much easier (and for Mac users, possible) to access.</description>
      <pubDate>Tue, 06 Jul 2004 16:17:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77255#M39842</guid>
      <dc:creator>James Murray</dc:creator>
      <dc:date>2004-07-06T16:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77256#M39843</link>
      <description>Wow is this ever complicated. &lt;BR /&gt;
&lt;BR /&gt;
As stated, all I want to do is print out the parameters page (variables, name, type, values) for reference when scripting GDL. And I'd probably want to print it out repeatedly as the GDL script progresses.&lt;BR /&gt;
&lt;BR /&gt;
I don't want to learn or use SQL.&lt;BR /&gt;
I don't want to have to script things or tinker with the Calculate menu.&lt;BR /&gt;
I don't want to use screen shots or some cumbersome workaround.&lt;BR /&gt;
&lt;BR /&gt;
I can print out the 3D, 2D, Master, Interface &amp;amp; other miscellaneous scripts. All that's needed is the ability to print out all the info in the parameters window for reference. I'm actually kind of suprised that this function isn't already available.&lt;BR /&gt;
&lt;BR /&gt;
Cheers, Cameron</description>
      <pubDate>Wed, 07 Jul 2004 09:46:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77256#M39843</guid>
      <dc:creator>Vitruvius</dc:creator>
      <dc:date>2004-07-07T09:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: GDL Parameter List</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77257#M39844</link>
      <description>Yes, I understand what you are saying, these are just work-arounds, but not real solutions.&lt;BR /&gt;
I wrote that SQL so you have something till this will be possible in AC.&lt;BR /&gt;
You could write a WISH for this.&lt;BR /&gt;
Laszlo</description>
      <pubDate>Wed, 07 Jul 2004 10:13:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-Parameter-List/m-p/77257#M39844</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2004-07-07T10:13:38Z</dc:date>
    </item>
  </channel>
</rss>

