<?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: Project drawing setup plugin in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13647277#M85143</link>
    <description>&lt;P&gt;There is no reason as to why it can not be done in lisp, just need a image of the dcl as a dwg, then if your lucky someone will make you a dcl, copying files is a simple task in lisp. You can select a directory to copy and make a destination directory. There are VL commands to do that.&lt;/P&gt;</description>
    <pubDate>Fri, 23 May 2025 23:15:12 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2025-05-23T23:15:12Z</dc:date>
    <item>
      <title>Project drawing setup plugin</title>
      <link>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13646336#M85142</link>
      <description>&lt;P&gt;Does anyone have the know how to create a plugin to copy drawing files from a common server folder location to a project specific folder location. The user would check "base" files to be created and plan sheet files to be created. The user would also add a project number to be added to the beginning to each created dwg file. Dwg "template" files would begin with XXXX, the x's would be renamed by the user input. Example: XX-XXXX SITE.dwg to 25-0610 SITE.dwg.&lt;/P&gt;&lt;P&gt;Ideally the user would have a dialog box to input info.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like .NET could make a plugin with a dialog box like this. See what attached gemini wrote based on my prompt. This could be a starting point. From what I have read visualstudio code could be used to make a .dll file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone done something like this?&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 11:48:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13646336#M85142</guid>
      <dc:creator>jwylie2020</dc:creator>
      <dc:date>2025-05-23T11:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Project drawing setup plugin</title>
      <link>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13647277#M85143</link>
      <description>&lt;P&gt;There is no reason as to why it can not be done in lisp, just need a image of the dcl as a dwg, then if your lucky someone will make you a dcl, copying files is a simple task in lisp. You can select a directory to copy and make a destination directory. There are VL commands to do that.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 23:15:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13647277#M85143</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-05-23T23:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Project drawing setup plugin</title>
      <link>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13651855#M85144</link>
      <description>&lt;P&gt;So far I got this far: A dialog box opens with available drawings to select and a field to enter a destination path. An OK and Cancel button. After filling out the error shows"; error: bad argument type: stringp nil"&lt;BR /&gt;Items to update: Fix the error, ability to select more than one drawing with shift/ctrl or select with checkboxes. Add field to enter project number and rename drawing name Xs with entered project number field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will work on these item.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jwylie2020_0-1748355250976.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1537703i8E76491EFE6E37AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jwylie2020_0-1748355250976.png" alt="jwylie2020_0-1748355250976.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 14:14:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13651855#M85144</guid>
      <dc:creator>jwylie2020</dc:creator>
      <dc:date>2025-05-27T14:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Project drawing setup plugin</title>
      <link>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13651879#M85145</link>
      <description>&lt;P&gt;For multiple list box selections add to dcl under your list_box this property&lt;/P&gt;&lt;LI-CODE lang="general"&gt;  multiple_select = true&lt;/LI-CODE&gt;&lt;P&gt;Checkout this thread on how to retrieve the returned value&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-select-multiple-text-in-a-dialog-box-to-parse-through/td-p/10149835" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-select-multiple-text-in-a-dialog-box-to-parse-through/td-p/10149835&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For destination path you may want to incorporate Lee Macs Browse For Folder:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.lee-mac.com/directorydialog.html" target="_blank" rel="noopener"&gt;https://www.lee-mac.com/directorydialog.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 14:33:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/project-drawing-setup-plugin/m-p/13651879#M85145</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-05-27T14:33:55Z</dc:date>
    </item>
  </channel>
</rss>

