<?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: get/set custom DWGPROPS using accoreconsole.exe in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9807851#M93936</link>
    <description>&lt;P&gt;Some precision about what I am trying to achieve using accoreconsole.exe on a DWG file:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;'Header' Metadata&lt;/STRONG&gt;&lt;BR /&gt;1. Read and output all custom drawing properties as a list of key/value pairs that can be easily parsed by the calling context&lt;BR /&gt;2. Write a list of key/value pairs as custom drawing properties and save the change to the same file (overwrite existing)&lt;/P&gt;&lt;P&gt;3. Delete a list of custom drawing properties by name (would run before 2., to ensure a clean slate if we decide to rename some properties)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Block Metadata&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Achieve the same as above for a given block. Although I am not sure yet how best to identify the block.&lt;BR /&gt;&lt;BR /&gt;It sounds like something basic but I am quite new to both ACAD and autolisp.&lt;BR /&gt;Thanks in advance for any advice &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Oct 2020 19:16:25 GMT</pubDate>
    <dc:creator>olivier.doucet</dc:creator>
    <dc:date>2020-10-16T19:16:25Z</dc:date>
    <item>
      <title>get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9790869#M93933</link>
      <description>&lt;P&gt;I am trying to automate reading/writing of custom drawing properties using accoreconsole.exe.&lt;BR /&gt;The aim is to have something fully scripted, no dialogs, that can run as a background process.&lt;BR /&gt;&lt;BR /&gt;I am new to autolisp and all examples I have seen involve:&lt;BR /&gt;(vla-get-ActiveDocument (vlax-get-acad-object))&lt;BR /&gt;&lt;BR /&gt;However it seems like accoreconsole.exe does not support ActiveX functions.&lt;BR /&gt;&lt;BR /&gt;I would be grateful for any tips on how to achieve both read and write of custom *.dwg properties.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 08:48:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9790869#M93933</guid>
      <dc:creator>olivier.doucet</dc:creator>
      <dc:date>2020-10-08T08:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9790936#M93934</link>
      <description>&lt;P&gt;Very recently&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/writing-custom-drawing-properties-without-activex/td-p/8519967" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 09:25:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9790936#M93934</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-10-08T09:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9791117#M93935</link>
      <description>&lt;P&gt;Thanks for the pointer!&lt;BR /&gt;I was hoping to find a scripted-solution, that would be more version independent (?)&lt;BR /&gt;I don't know in advance what AutoCAD version is installed on the target machine (but &amp;gt;2018) and the solution should accommodate that.&lt;BR /&gt;Loading a pre-compiled C# assembly means that I need to make some assumption on the target framework, or have one for each case.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 10:48:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9791117#M93935</guid>
      <dc:creator>olivier.doucet</dc:creator>
      <dc:date>2020-10-08T10:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9807851#M93936</link>
      <description>&lt;P&gt;Some precision about what I am trying to achieve using accoreconsole.exe on a DWG file:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;'Header' Metadata&lt;/STRONG&gt;&lt;BR /&gt;1. Read and output all custom drawing properties as a list of key/value pairs that can be easily parsed by the calling context&lt;BR /&gt;2. Write a list of key/value pairs as custom drawing properties and save the change to the same file (overwrite existing)&lt;/P&gt;&lt;P&gt;3. Delete a list of custom drawing properties by name (would run before 2., to ensure a clean slate if we decide to rename some properties)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Block Metadata&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Achieve the same as above for a given block. Although I am not sure yet how best to identify the block.&lt;BR /&gt;&lt;BR /&gt;It sounds like something basic but I am quite new to both ACAD and autolisp.&lt;BR /&gt;Thanks in advance for any advice &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 19:16:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9807851#M93936</guid>
      <dc:creator>olivier.doucet</dc:creator>
      <dc:date>2020-10-16T19:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9807900#M93937</link>
      <description>&lt;P&gt;If you find the need to get help with this feel free to &lt;A href="https://jtbworld.com/contact" target="_blank" rel="noopener"&gt;contact us&lt;/A&gt;. It's quite minor work so it should not cost much but needs to be done with .NET but same DLL will probably work for quite a few versions back and in the future.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 19:53:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9807900#M93937</guid>
      <dc:creator>JTBWorld</dc:creator>
      <dc:date>2020-10-16T19:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9808207#M93938</link>
      <description>&lt;P&gt;If you are trying to get summary info have you thought about using &lt;A href="http://www.lee-mac.com/odbxbase.html" target="_blank" rel="noopener"&gt;ODBX&lt;/A&gt;? It's super fast&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Oct 2020 03:13:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9808207#M93938</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2020-10-17T03:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9808417#M93939</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/405101"&gt;@JTBWorld&lt;/a&gt;&amp;nbsp; Isn't this post on your blog solution to his problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2010/05/propulate-tutorial-for-dwg-properties.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2010/05/propulate-tutorial-for-dwg-properties.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Oct 2020 10:47:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9808417#M93939</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-17T10:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: get/set custom DWGPROPS using accoreconsole.exe</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9808604#M93940</link>
      <description>&lt;P&gt;It might be to some extent.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Oct 2020 14:53:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/get-set-custom-dwgprops-using-accoreconsole-exe/m-p/9808604#M93940</guid>
      <dc:creator>JTBWorld</dc:creator>
      <dc:date>2020-10-17T14:53:55Z</dc:date>
    </item>
  </channel>
</rss>

