<?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: AutoCAD Project in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294901#M12413</link>
    <description>&lt;P&gt;Personally, I learned from the examples on Kean Walmsley's blog. That was enough for me. There are &lt;A href="https://adndevblog.typepad.com/autocad/2012/05/how-to-obtain-acdb3dsolid-opm-properties-in-autocad-using-objectarxc.html" target="_blank" rel="noopener"&gt;other&lt;/A&gt; blogs as well. In addition, the &lt;A href="https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-C3F3C736-40CF-44A0-9210-55F6A939B6F2" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt; for the .Net API and the ObjectARX package (which you will need anyway) have many examples in C#. But try to google any method from the AutoCAD.Net API and you will find a lot of examples.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2022 15:12:10 GMT</pubDate>
    <dc:creator>AVCPlugins</dc:creator>
    <dc:date>2022-07-13T15:12:10Z</dc:date>
    <item>
      <title>AutoCAD Project</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11293108#M12408</link>
      <description>&lt;P&gt;Hello, can someone help me figure out something for a project I have with AutoCAD.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a drawings ready in a .dwg file. These drawings are going to be blocks with attributes. I need to write a code using .NET and C# on Microsoft Visual Studio. I need this code to choose from one of the blocks and drop it into a new file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I need to be able to write a code that can go through each line of the drawings and fill in the attributes from data in an excel sheet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an image of the blocks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022_07_12_15_32_49_Greenshot.png" style="width: 653px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1090772iEBA002EE6726F459/image-size/large?v=v2&amp;amp;px=999" role="button" title="2022_07_12_15_32_49_Greenshot.png" alt="2022_07_12_15_32_49_Greenshot.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 20:36:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11293108#M12408</guid>
      <dc:creator>imrantheman12</dc:creator>
      <dc:date>2022-07-12T20:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Project</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294036#M12409</link>
      <description>&lt;P&gt;To copy a block to a file, one line of code is enough:&lt;/P&gt;&lt;P&gt;sourceDb.WblockCloneObjects(col, newdb.BlockTableId, map, DuplicateRecordCloning.Replace, false);&lt;BR /&gt;(However, this code does not insert the block reference into model space. This is a bit more complicated.)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;To fill in the attributes according to the table, you need to clearly formulate the matching rules - what data to insert into which block. The process of writing attributes is also not a problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The question is, do you want to learn how to program or are you looking for a developer?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 08:33:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294036#M12409</guid>
      <dc:creator>AVCPlugins</dc:creator>
      <dc:date>2022-07-13T08:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Project</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294721#M12410</link>
      <description>&lt;P&gt;I definitely want to learn how to program, but I am not sure about what I am doing or where to start. This is my first time doing a project like this and I not too familiar with coding, especially not with creating code for AutoCAD. Would you be able to guide me? Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 14:11:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294721#M12410</guid>
      <dc:creator>imrantheman12</dc:creator>
      <dc:date>2022-07-13T14:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Project</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294757#M12411</link>
      <description>&lt;P&gt;To get started, you must have programming experience. At least in some language. Preferably object oriented programming (OOP). You need to start with the basics and not with the AutoCAD API.&lt;BR /&gt;Further, I would recommend that you take ready-made &lt;A href="https://www.keanw.com/2006/08/import_blocks_f.html" target="_blank" rel="noopener"&gt;examples&lt;/A&gt; (there are actually millions of them) and implement them as is. And then try to change to suit your needs.&lt;BR /&gt;Only then should you start your own projects.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 14:23:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294757#M12411</guid>
      <dc:creator>AVCPlugins</dc:creator>
      <dc:date>2022-07-13T14:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Project</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294770#M12412</link>
      <description>&lt;P&gt;I am currently learning C#, and was assigned this project to get done. I am learning as I go. I have been trying to find example projects to reference from, and was wondering where else I could find example projects besides the link you provided?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 14:27:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294770#M12412</guid>
      <dc:creator>imrantheman12</dc:creator>
      <dc:date>2022-07-13T14:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD Project</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294901#M12413</link>
      <description>&lt;P&gt;Personally, I learned from the examples on Kean Walmsley's blog. That was enough for me. There are &lt;A href="https://adndevblog.typepad.com/autocad/2012/05/how-to-obtain-acdb3dsolid-opm-properties-in-autocad-using-objectarxc.html" target="_blank" rel="noopener"&gt;other&lt;/A&gt; blogs as well. In addition, the &lt;A href="https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-C3F3C736-40CF-44A0-9210-55F6A939B6F2" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt; for the .Net API and the ObjectARX package (which you will need anyway) have many examples in C#. But try to google any method from the AutoCAD.Net API and you will find a lot of examples.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 15:12:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-project/m-p/11294901#M12413</guid>
      <dc:creator>AVCPlugins</dc:creator>
      <dc:date>2022-07-13T15:12:10Z</dc:date>
    </item>
  </channel>
</rss>

