<?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: Storing data in the drawing in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677232#M71439</link>
    <description>&lt;P&gt;It depends on what you have planned for the data. Most of the important entity/object data will be saved along with entity/object. So it depends on what data you want to save, why you want to save it and for how long.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it for the life of the drawing (including perpetual electronic storage), just until the drawing is archived or only until it is completed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both Xdata and Ldata are great for storing data.&lt;BR /&gt;&lt;BR /&gt;LData can &lt;STRONG&gt;&lt;U&gt;ONLY&lt;/U&gt;&lt;/STRONG&gt; be read by LISP, but it can store lists directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xdata can be read by cannot store lists directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a discussion of sorts at TheSwamp&amp;nbsp; &lt;A href="https://www.theswamp.org/index.php?topic=44080.0" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;&amp;nbsp; You have to know your players.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Aug 2020 16:42:30 GMT</pubDate>
    <dc:creator>dlanorh</dc:creator>
    <dc:date>2020-08-06T16:42:30Z</dc:date>
    <item>
      <title>Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677112#M71437</link>
      <description>&lt;P&gt;I'm looking for a way to store some data in the actual drawing and I ran across "VLAX-LDATA-PUT".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did some research about it and ran across some post on the OpenDCL forums saying that it shouldn't be used&lt;/P&gt;&lt;P&gt;&lt;A href="https://opendcl.com/forum/index.php?topic=1191.0" target="_blank" rel="noopener"&gt;https://opendcl.com/forum/index.php?topic=1191.0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im curious to see what some of the top guys have to say about this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I dont want to store xdata in a object that can be deleted, but instead store it in the drawing itself. For example if I wanted to store the current drawing revision as data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked into storing the data the drawing properties, but once its set it would error out. Aside from that it could be easily edited by someone.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 15:51:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677112#M71437</guid>
      <dc:creator>Jonathan3891</dc:creator>
      <dc:date>2020-08-06T15:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677163#M71438</link>
      <description>&lt;P&gt;I have used vlax-ldata-put and get back when I developed a way to save Land Desktop 2004 back to 2000 without losing intelligence.&amp;nbsp; It's basically the same as using dictionaries and xrecords, but it's easier because you can store most any kind of AutoLisp data, including lists.&amp;nbsp; Contrary to others' opinions, I never had any troubles.&lt;/P&gt;
&lt;P&gt;BTW, I would store it in the Modelspace object, which I believe you cannot delete.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 16:14:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677163#M71438</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-08-06T16:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677232#M71439</link>
      <description>&lt;P&gt;It depends on what you have planned for the data. Most of the important entity/object data will be saved along with entity/object. So it depends on what data you want to save, why you want to save it and for how long.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it for the life of the drawing (including perpetual electronic storage), just until the drawing is archived or only until it is completed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both Xdata and Ldata are great for storing data.&lt;BR /&gt;&lt;BR /&gt;LData can &lt;STRONG&gt;&lt;U&gt;ONLY&lt;/U&gt;&lt;/STRONG&gt; be read by LISP, but it can store lists directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xdata can be read by cannot store lists directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a discussion of sorts at TheSwamp&amp;nbsp; &lt;A href="https://www.theswamp.org/index.php?topic=44080.0" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;&amp;nbsp; You have to know your players.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 16:42:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677232#M71439</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2020-08-06T16:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677357#M71440</link>
      <description>I do know that Owen Wengerd had advised against the use of Ldata.  He is&lt;BR /&gt;obviously an MVP.  But as I said, I have had no problem with it, even&lt;BR /&gt;surviving a round trip from 2004 to 2000 and back.</description>
      <pubDate>Thu, 06 Aug 2020 17:31:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677357#M71440</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2020-08-06T17:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677511#M71441</link>
      <description>&lt;P&gt;PERSONALLY,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to avoid Visual LISP where I can. that way when/if Autodesk gets rid of supporting it, then hopefully I'll still have my AutoLISP functions. Also, some users may not have the extension installed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I'm a Dictionaries / XRecords / XData guy myself.&lt;/P&gt;&lt;P&gt;But don't get me wrong.. I still use many Visual LISP functions daily.. I'm just dreading the thought of them ever being unsupported. Kinda like how you laugh at your crazy apocalypse-preparing neighbor, at least until the apocalypse comes Lol.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 19:02:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677511#M71441</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2020-08-06T19:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677633#M71442</link>
      <description>&lt;P&gt;Tony T was not enamoured either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did use ldata for storing various lisp values (e.g. remembering settings) many moons ago.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xdata I've used twice in the last 20yrs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 20:26:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677633#M71442</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2020-08-06T20:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677642#M71443</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5680873"&gt;@CodeDing&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;PERSONALLY,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to avoid Visual LISP where I can. that way when/if Autodesk gets rid of supporting it, then hopefully I'll still have my AutoLISP functions. Also, some users may not have the extension installed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I'm a Dictionaries / XRecords / XData guy myself.&lt;/P&gt;&lt;P&gt;But don't get me wrong.. I still use many Visual LISP functions daily.. I'm just dreading the thought of them ever being unsupported. Kinda like how you laugh at your crazy apocalypse-preparing neighbor, at least until the apocalypse comes Lol.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;They've been predicting the death for 15 years. If it shuffles off this mortal coil in AutoCAD, there is always BricsCAD. &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 20:30:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677642#M71443</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2020-08-06T20:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Storing data in the drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677937#M71444</link>
      <description>&lt;P&gt;Whats that&amp;nbsp; VBA is gone ! Who said that and when ?&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_squinting_face:"&gt;😆&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 01:08:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/storing-data-in-the-drawing/m-p/9677937#M71444</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-08-07T01:08:20Z</dc:date>
    </item>
  </channel>
</rss>

