<?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: in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873464#M158677</link>
    <description>I don't know if this applies in 2000, but custom dictionaries are lost when&lt;BR /&gt;
wblocking an R14 drawing.&lt;BR /&gt;
&lt;BR /&gt;
Mark</description>
    <pubDate>Mon, 24 Apr 2000 23:25:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2000-04-24T23:25:40Z</dc:date>
    <item>
      <title>Best place for xdata</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873458#M158671</link>
      <description>Hi all.&lt;BR /&gt;
&lt;BR /&gt;
I have an application which needs to save its data into the AutoCAD file.&lt;BR /&gt;
The data is basically a long list, which is made up of other nested lists.&lt;BR /&gt;
It can be of variable length.&lt;BR /&gt;
&lt;BR /&gt;
I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
questions.&lt;BR /&gt;
&lt;BR /&gt;
1) What is the best entity to attach the xdata to ?  I need to be able to&lt;BR /&gt;
hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
survive between sessions.  I would guess it should be a block insertion, but&lt;BR /&gt;
can I create an "empty", unselectable block ?&lt;BR /&gt;
&lt;BR /&gt;
2) I understand that the data should be an association list.  However, in my&lt;BR /&gt;
case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
end.  Is this a bad idea ?&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Andy</description>
      <pubDate>Mon, 24 Apr 2000 06:45:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873458#M158671</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T06:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Best place for xdata</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873459#M158672</link>
      <description>Hi all.&lt;BR /&gt;
&lt;BR /&gt;
I have an application which needs to save its data into the AutoCAD file.&lt;BR /&gt;
The data is basically a long list, which is made up of other nested lists.&lt;BR /&gt;
It can be of variable length.&lt;BR /&gt;
&lt;BR /&gt;
I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
questions.&lt;BR /&gt;
&lt;BR /&gt;
1) What is the best entity to attach the xdata to ?  I need to be able to&lt;BR /&gt;
hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
survive between sessions.  I would guess it should be a block insertion, but&lt;BR /&gt;
can I create an "empty", unselectable block ?&lt;BR /&gt;
&lt;BR /&gt;
2) I understand that the data should be an association list.  However, in my&lt;BR /&gt;
case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
end.  Is this a bad idea ?&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Andy</description>
      <pubDate>Mon, 24 Apr 2000 06:45:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873459#M158672</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T06:45:23Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873460#M158673</link>
      <description>Andrew,&lt;BR /&gt;
1) You can have a blank unselectable block.&lt;BR /&gt;
e.g. start a new dwg with no template &amp;amp; save as XYX.DWG.&lt;BR /&gt;
Your program can insert XYZ.DWG as a block insert&lt;BR /&gt;
and then attach extended entity data to this block insert.&lt;BR /&gt;
The user can't pick the block insert because it has no graphical&lt;BR /&gt;
entities to select.&lt;BR /&gt;
The problem you have to deal with is what happens when a dwg file&lt;BR /&gt;
containing this block is inserted as a block or an exploded block&lt;BR /&gt;
into another dwg.&lt;BR /&gt;
2) Use an association list if the data that  is dependant on position, scale&lt;BR /&gt;
factor etc.&lt;BR /&gt;
Regards Ian&lt;BR /&gt;
&lt;BR /&gt;
IAndrew le Bihan wrote in message ...&lt;BR /&gt;
&amp;gt;Hi all.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;I have an application which needs to save its data into the AutoCAD file.&lt;BR /&gt;
&amp;gt;The data is basically a long list, which is made up of other nested lists.&lt;BR /&gt;
&amp;gt;It can be of variable length.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
&amp;gt;questions.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;1) What is the best entity to attach the xdata to ?  I need to be able to&lt;BR /&gt;
&amp;gt;hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
&amp;gt;survive between sessions.  I would guess it should be a block insertion,&lt;BR /&gt;
but&lt;BR /&gt;
&amp;gt;can I create an "empty", unselectable block ?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;2) I understand that the data should be an association list.  However, in&lt;BR /&gt;
my&lt;BR /&gt;
&amp;gt;case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
&amp;gt;end.  Is this a bad idea ?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;Thanks&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;Andy&lt;BR /&gt;
&amp;gt;</description>
      <pubDate>Mon, 24 Apr 2000 11:10:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873460#M158673</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T11:10:18Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873461#M158674</link>
      <description>Andy,&lt;BR /&gt;
&lt;BR /&gt;
Have you considered  using a dictionary to store this information?  Its&lt;BR /&gt;
probably easier to set up and to maintain the data.  keep and theres more&lt;BR /&gt;
flexibility in the amount of data that you can store.&lt;BR /&gt;
"Andrew le Bihan" &lt;ANDY.LEBIHAN&gt; wrote in message&lt;BR /&gt;
news:ef01c33.0@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; Hi all.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I have an application which needs to save its data into the AutoCAD file.&lt;BR /&gt;
&amp;gt; The data is basically a long list, which is made up of other nested lists.&lt;BR /&gt;
&amp;gt; It can be of variable length.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
&amp;gt; questions.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; 1) What is the best entity to attach the xdata to ?  I need to be able to&lt;BR /&gt;
&amp;gt; hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
&amp;gt; survive between sessions.  I would guess it should be a block insertion,&lt;BR /&gt;
but&lt;BR /&gt;
&amp;gt; can I create an "empty", unselectable block ?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; 2) I understand that the data should be an association list.  However, in&lt;BR /&gt;
my&lt;BR /&gt;
&amp;gt; case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
&amp;gt; end.  Is this a bad idea ?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Andy&lt;BR /&gt;
&amp;gt;&lt;/ANDY.LEBIHAN&gt;</description>
      <pubDate>Mon, 24 Apr 2000 12:25:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873461#M158674</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T12:25:26Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873462#M158675</link>
      <description>Andrew,&lt;BR /&gt;
&lt;BR /&gt;
Extended entitiy data has a limit of 16,383 bytes so if the list of xdata&lt;BR /&gt;
you plan to store can concievably become larger than this you should put the&lt;BR /&gt;
data in a dictionary.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
&lt;BR /&gt;
Cliff&lt;BR /&gt;
&lt;BR /&gt;
Andrew le Bihan &lt;ANDY.LEBIHAN&gt; wrote in message&lt;BR /&gt;
news:ef01c33.0@WebX.SaUCah8kaAW...&lt;BR /&gt;
| Hi all.&lt;BR /&gt;
|&lt;BR /&gt;
| I have an application which needs to save its data into the AutoCAD file.&lt;BR /&gt;
| The data is basically a long list, which is made up of other nested lists.&lt;BR /&gt;
| It can be of variable length.&lt;BR /&gt;
|&lt;BR /&gt;
| I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
| questions.&lt;BR /&gt;
|&lt;BR /&gt;
| 1) What is the best entity to attach the xdata to ?  I need to be able to&lt;BR /&gt;
| hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
| survive between sessions.  I would guess it should be a block insertion,&lt;BR /&gt;
but&lt;BR /&gt;
| can I create an "empty", unselectable block ?&lt;BR /&gt;
|&lt;BR /&gt;
| 2) I understand that the data should be an association list.  However, in&lt;BR /&gt;
my&lt;BR /&gt;
| case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
| end.  Is this a bad idea ?&lt;BR /&gt;
|&lt;BR /&gt;
| Thanks&lt;BR /&gt;
|&lt;BR /&gt;
| Andy&lt;BR /&gt;
|&lt;/ANDY.LEBIHAN&gt;</description>
      <pubDate>Mon, 24 Apr 2000 12:26:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873462#M158675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T12:26:08Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873463#M158676</link>
      <description>I would recommend a dictionary also but if you must use XDATA, layer 0 works&lt;BR /&gt;
great.&lt;BR /&gt;
&lt;BR /&gt;
-mjm&lt;BR /&gt;
"Cliff Middleton" &lt;CMIDDLETON&gt; wrote in message&lt;BR /&gt;
news:ef01c33.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; Andrew,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Extended entitiy data has a limit of 16,383 bytes so if the list of xdata&lt;BR /&gt;
&amp;gt; you plan to store can concievably become larger than this you should put&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; data in a dictionary.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Cliff&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Andrew le Bihan &lt;ANDY.LEBIHAN&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef01c33.0@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; | Hi all.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | I have an application which needs to save its data into the AutoCAD&lt;BR /&gt;
file.&lt;BR /&gt;
&amp;gt; | The data is basically a long list, which is made up of other nested&lt;BR /&gt;
lists.&lt;BR /&gt;
&amp;gt; | It can be of variable length.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
&amp;gt; | questions.&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | 1) What is the best entity to attach the xdata to ?  I need to be able&lt;BR /&gt;
to&lt;BR /&gt;
&amp;gt; | hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
&amp;gt; | survive between sessions.  I would guess it should be a block insertion,&lt;BR /&gt;
&amp;gt; but&lt;BR /&gt;
&amp;gt; | can I create an "empty", unselectable block ?&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | 2) I understand that the data should be an association list.  However,&lt;BR /&gt;
in&lt;BR /&gt;
&amp;gt; my&lt;BR /&gt;
&amp;gt; | case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
&amp;gt; | end.  Is this a bad idea ?&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Thanks&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt; | Andy&lt;BR /&gt;
&amp;gt; |&lt;BR /&gt;
&amp;gt;&lt;/ANDY.LEBIHAN&gt;&lt;/CMIDDLETON&gt;</description>
      <pubDate>Mon, 24 Apr 2000 19:57:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873463#M158676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T19:57:19Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873464#M158677</link>
      <description>I don't know if this applies in 2000, but custom dictionaries are lost when&lt;BR /&gt;
wblocking an R14 drawing.&lt;BR /&gt;
&lt;BR /&gt;
Mark</description>
      <pubDate>Mon, 24 Apr 2000 23:25:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873464#M158677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-24T23:25:40Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873465#M158678</link>
      <description>If you use xdata, how about an empty text entity (no text, and not visible).&lt;BR /&gt;
&lt;BR /&gt;
-Steve&lt;BR /&gt;
&lt;BR /&gt;
michael montagne wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; I would recommend a dictionary also but if you must use XDATA, layer 0 works&lt;BR /&gt;
&amp;gt; great.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; -mjm&lt;BR /&gt;
&amp;gt; "Cliff Middleton" &lt;CMIDDLETON&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:ef01c33.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; &amp;gt; Andrew,&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Extended entitiy data has a limit of 16,383 bytes so if the list of xdata&lt;BR /&gt;
&amp;gt; &amp;gt; you plan to store can concievably become larger than this you should put&lt;BR /&gt;
&amp;gt; the&lt;BR /&gt;
&amp;gt; &amp;gt; data in a dictionary.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Cliff&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Andrew le Bihan &lt;ANDY.LEBIHAN&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:ef01c33.0@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; &amp;gt; | Hi all.&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt; | I have an application which needs to save its data into the AutoCAD&lt;BR /&gt;
&amp;gt; file.&lt;BR /&gt;
&amp;gt; &amp;gt; | The data is basically a long list, which is made up of other nested&lt;BR /&gt;
&amp;gt; lists.&lt;BR /&gt;
&amp;gt; &amp;gt; | It can be of variable length.&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt; | I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
&amp;gt; &amp;gt; | questions.&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt; | 1) What is the best entity to attach the xdata to ?  I need to be able&lt;BR /&gt;
&amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; | hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
&amp;gt; &amp;gt; | survive between sessions.  I would guess it should be a block insertion,&lt;BR /&gt;
&amp;gt; &amp;gt; but&lt;BR /&gt;
&amp;gt; &amp;gt; | can I create an "empty", unselectable block ?&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt; | 2) I understand that the data should be an association list.  However,&lt;BR /&gt;
&amp;gt; in&lt;BR /&gt;
&amp;gt; &amp;gt; my&lt;BR /&gt;
&amp;gt; &amp;gt; | case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
&amp;gt; &amp;gt; | end.  Is this a bad idea ?&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt; | Thanks&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt; | Andy&lt;BR /&gt;
&amp;gt; &amp;gt; |&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;/ANDY.LEBIHAN&gt;&lt;/CMIDDLETON&gt;</description>
      <pubDate>Tue, 25 Apr 2000 00:31:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873465#M158678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-25T00:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Best place for xdata</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873466#M158679</link>
      <description>Andrew,&lt;BR /&gt;
&lt;BR /&gt;
Please see our TechCenter website (URL below). In the Xdata section, there are&lt;BR /&gt;
two functions : (XD_ReadX....) and (XD_WriteX...) which will allow you to save&lt;BR /&gt;
and retrieve any xdata (included deepely nested lists fo complex data types).&lt;BR /&gt;
Let me know if you need he;lp.&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
Rakesh&lt;BR /&gt;
&lt;BR /&gt;
Andrew le Bihan wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; Hi all.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I have an application which needs to save its data into the AutoCAD file.&lt;BR /&gt;
&amp;gt; The data is basically a long list, which is made up of other nested lists.&lt;BR /&gt;
&amp;gt; It can be of variable length.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I've read the xdata stuff in the ACG, but I have a couple of outstanding&lt;BR /&gt;
&amp;gt; questions.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; 1) What is the best entity to attach the xdata to ?  I need to be able to&lt;BR /&gt;
&amp;gt; hide the entity from the user, stop him/her from deleting it and it must&lt;BR /&gt;
&amp;gt; survive between sessions.  I would guess it should be a block insertion, but&lt;BR /&gt;
&amp;gt; can I create an "empty", unselectable block ?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; 2) I understand that the data should be an association list.  However, in my&lt;BR /&gt;
&amp;gt; case this seems unecessary - I could just add (-3 (the big list)) to the&lt;BR /&gt;
&amp;gt; end.  Is this a bad idea ?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Andy&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
-----------------------------------------------&lt;BR /&gt;
    Four Dimension Technologies, Singapore&lt;BR /&gt;
&lt;BR /&gt;
AutoCAD application development &amp;amp; customization&lt;BR /&gt;
GIS/CAD Implementation &amp;amp; support&lt;BR /&gt;
Technical &amp;amp; Geographic data processing&lt;BR /&gt;
&lt;BR /&gt;
TechCenter URL: http://www.4d-technologies.com/techcenter&lt;BR /&gt;
URL : http://www.4d-technologies.com&lt;BR /&gt;
Member of the Autodesk Developer Network(ADN)&lt;BR /&gt;
------------------------------------------------</description>
      <pubDate>Tue, 25 Apr 2000 04:02:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873466#M158679</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-25T04:02:35Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873467#M158680</link>
      <description>Thanks everyone for all the help.  I have coded the thing as an association&lt;BR /&gt;
list tagged onto a block insertion - this is working fine.  I'm not too&lt;BR /&gt;
worried about the xdata limits (my most complex test drawing took up&lt;BR /&gt;
2000bytes).&lt;BR /&gt;
&lt;BR /&gt;
Rakesh - thanks, but I'd already written the code before your reply !  I&lt;BR /&gt;
will dig deeper into your site though - it looks very interesting.&lt;BR /&gt;
&lt;BR /&gt;
Andy</description>
      <pubDate>Tue, 25 Apr 2000 07:05:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/best-place-for-xdata/m-p/873467#M158680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-25T07:05:27Z</dc:date>
    </item>
  </channel>
</rss>

