<?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: VB.Net Delete certain extrusions in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789128#M80620</link>
    <description>&lt;P&gt;Yes it should work exactly like that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please be aware that I need to save the Assemblies with the modified components (as backup). I'm not sure if this is possible if I work with temporare files?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for writing the bytes back. This sounds like an cool but difficult method. I have no experience with that.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2018 16:02:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-02-19T16:02:45Z</dc:date>
    <item>
      <title>VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788592#M80582</link>
      <description>&lt;P&gt;Hello there&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am adding extrusions to part documents via vb.net. The modified parts are then used to build an assembly.&lt;/P&gt;&lt;P&gt;The problem is, that for the next assembly the parts should be "clean" again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question now is what's the best way to delete only the extrusions created during the modification (there are extrusions in the clean version which should not be deleted).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought of assigning each extrusion a name, and later check for the names to delete them. However this would result in a lot of code lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to, I don't know, set a property or something and then simply check all Extrusions (with an For Each Loop) and delete those with that property?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 13:36:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788592#M80582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-19T13:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788845#M80600</link>
      <description>are you using vault?</description>
      <pubDate>Mon, 19 Feb 2018 14:48:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788845#M80600</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-02-19T14:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788957#M80610</link>
      <description>&lt;P&gt;Sadly Vault is not an Option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To save the assemblies I use PackandGo through the API.&lt;/P&gt;&lt;P&gt;Basically I adjust the parts, packandgo the assembly (with it's components) to a different directory, and then restore the parts for the next assembly. Not the best way, but it should work I guess.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 15:17:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788957#M80610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-19T15:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788983#M80612</link>
      <description>do I understand correctly:&lt;BR /&gt;&lt;BR /&gt;you have a part that has as basis&lt;BR /&gt;you modify the part&lt;BR /&gt;you create assemblies etc&lt;BR /&gt;you need to have the basis of the part again&lt;BR /&gt;&lt;BR /&gt;Then this option is maybe possible:&lt;BR /&gt;&lt;BR /&gt;Save the file as a temporare file and restore it by coding.&lt;BR /&gt;otherwise you could try to read and write the bytes back to the part.&lt;BR /&gt;&lt;BR /&gt;if you need help please let me know.</description>
      <pubDate>Mon, 19 Feb 2018 15:25:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7788983#M80612</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-02-19T15:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789128#M80620</link>
      <description>&lt;P&gt;Yes it should work exactly like that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please be aware that I need to save the Assemblies with the modified components (as backup). I'm not sure if this is possible if I work with temporare files?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for writing the bytes back. This sounds like an cool but difficult method. I have no experience with that.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 16:02:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789128#M80620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-19T16:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789397#M80623</link>
      <description>It is not difficult.</description>
      <pubDate>Mon, 19 Feb 2018 17:12:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789397#M80623</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-02-19T17:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789402#M80624</link>
      <description>About the bytes I mean. I am not at my desk right now.&lt;BR /&gt;I will show you how if you want.&lt;BR /&gt;&lt;BR /&gt;Please let me know.</description>
      <pubDate>Mon, 19 Feb 2018 17:13:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7789402#M80624</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-02-19T17:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: VB.Net Delete certain extrusions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7790806#M80662</link>
      <description>&lt;P&gt;I want to let you know I solved my problem. I copied and pasted my Module, and swapped the functions which create the extrusions with a function that deletes the extrusions. Not fancy at all but at least it works like it should.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nevertheless, if you are willing to I would be glad if you could explain how writing bytes back works. I'm sure I could make use of this in future projects.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 07:53:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/vb-net-delete-certain-extrusions/m-p/7790806#M80662</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-20T07:53:04Z</dc:date>
    </item>
  </channel>
</rss>

