<?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: Placing a Part in the same position in an Assembly Using iLogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10510761#M127061</link>
    <description>&lt;P&gt;That goes also without programming!&lt;/P&gt;
&lt;P&gt;Curious?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;In the application options change:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bradeneuropeArthur_0-1627745954666.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/947207i186069B330396871/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bradeneuropeArthur_0-1627745954666.png" alt="bradeneuropeArthur_0-1627745954666.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add a component pattern with distance "0" and a Qty and you need for this component&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 31 Jul 2021 15:41:03 GMT</pubDate>
    <dc:creator>bradeneuropeArthur</dc:creator>
    <dc:date>2021-07-31T15:41:03Z</dc:date>
    <item>
      <title>Placing a Part in the same position in an Assembly Using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10509162#M127053</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I'm trying to develop an application that automates a process.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I place a Part in a specific position in the Assembly and I would like to copy this part as many times as I want and place it in the same position using programming.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I'm using VBA for this inside de iLogic in Inventor 2018.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 18:38:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10509162#M127053</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-30T18:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Placing a Part in the same position in an Assembly Using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10510761#M127061</link>
      <description>&lt;P&gt;That goes also without programming!&lt;/P&gt;
&lt;P&gt;Curious?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;In the application options change:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bradeneuropeArthur_0-1627745954666.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/947207i186069B330396871/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bradeneuropeArthur_0-1627745954666.png" alt="bradeneuropeArthur_0-1627745954666.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add a component pattern with distance "0" and a Qty and you need for this component&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Jul 2021 15:41:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10510761#M127061</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2021-07-31T15:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Placing a Part in the same position in an Assembly Using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10513316#M127082</link>
      <description>&lt;P&gt;Here is sample code for "Copy occurrence" to the same position&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Dim asmDef As AssemblyComponentDefinition = ThisDoc.Document.ComponentDefinition

Dim occ As ComponentOccurrence = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kAssemblyOccurrenceFilter, "Pick Occurrence")
Dim occDocument As Document = occ.Definition.Document
Dim occDocumentName As String = occDocument.FullDocumentName
Dim position As Matrix = occ.Transformation
Do
	asmDef.Occurrences.Add(occDocumentName, position)
Loop While (MsgBox("Again?", MsgBoxStyle.YesNo + MsgBoxStyle.Question) = MsgBoxResult.Yes)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 02 Aug 2021 07:13:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/placing-a-part-in-the-same-position-in-an-assembly-using-ilogic/m-p/10513316#M127082</guid>
      <dc:creator>Michael.Navara</dc:creator>
      <dc:date>2021-08-02T07:13:04Z</dc:date>
    </item>
  </channel>
</rss>

