<?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: iLogic To Suppress Link To A Derived Assembly in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8429228#M91814</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2542515"&gt;@kwalker1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try below iLogic code to get custom iProperty of ShriknWrap assembly without opening it. Unfortunately, suppressed shrikwrap assembly is unable to get custom iProperty.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: iLogic code should be run in PartDocument which contains ShrinkWrapComponent.&lt;/P&gt;
&lt;PRE&gt;Sub Main()
	
	Dim oShrinkwrap As PartDocument
	oShrinkwrap = ThisApplication.ActiveDocument
	
	Dim oDef As PartComponentDefinition
	oDef = oShrinkwrap.ComponentDefinition
	
	Dim oShrinkComp As ShrinkwrapComponent
	For Each oShrinkComp In oDef.ReferenceComponents.ShrinkwrapComponents
		
		Dim oReferDoc As Document
        oReferDoc = oShrinkComp.ReferencedDocumentDescriptor.ReferencedDocument
		
		Dim oPropValue As String 
		oPropValue = oReferDoc.PropertySets.Item(4).Item("STRUCTURE SAVE DATE &amp;amp; TIME STAMP").Value
		 MessageBox.Show(oPropValue, "Title")
		
	Next
End Sub&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
    <pubDate>Wed, 28 Nov 2018 05:39:59 GMT</pubDate>
    <dc:creator>chandra.shekar.g</dc:creator>
    <dc:date>2018-11-28T05:39:59Z</dc:date>
    <item>
      <title>iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8415502#M91608</link>
      <description>&lt;P&gt;I have a large sub-assembly which has been shrinkwrapped to it's own part file.&lt;/P&gt;
&lt;P&gt;I am then trying to suppress the link to its base component via iLogic code placed in the shrinkwrap part file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All searches on this forum relate to a &lt;EM&gt;Derived Part&lt;/EM&gt; inside an assembly file, whereas I have a &lt;EM&gt;Derived Assembly&lt;/EM&gt; inside a part file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/572003i7EE6D666DE9E8FD0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have picked up some code from the following post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/supress-link-with-base-component-ilogic/td-p/4781353" target="_blank"&gt;Supress Link with base component ilogic&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and then modified it for a derived assembly instead as follows but nothing seems to happen once the code is successfully run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main()

Dim oShrinkwrap As PartDocument
oShrinkwrap = ThisApplication.ActiveDocument

Dim occ As ComponentOccurrence
Dim derivedAssembly As DerivedAssemblyComponent

For Each occ In oShrinkwrap.ComponentDefinition.Occurrences
    For Each derivedAssembly In occ.Definition.ReferenceComponents.DerivedAssemblyComponents
		
		derivedAssembly.SuppressLinkToFile = True
        
        iLogicVb.UpdateWhenDone = True
        
	Next
	
Next

End Sub&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If anyone can assist me with this then it would be much appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 07:35:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8415502#M91608</guid>
      <dc:creator>kwalker1</dc:creator>
      <dc:date>2018-11-21T07:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8415680#M91612</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2542515"&gt;@kwalker1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please provide Part Document with Derived assembly to test the code? Please make sure that files are non confidential.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 09:04:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8415680#M91612</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-11-21T09:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8417783#M91633</link>
      <description>&lt;P&gt;Hi Chandra,&lt;/P&gt;
&lt;P&gt;Thanks for the message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find attached a simplified example model with the iLogic code.&lt;/P&gt;
&lt;P&gt;The code is located within the STRUCTURE ASSEMBLY (SHRINKWRAPPED).ipt file.&lt;/P&gt;
&lt;P&gt;It is triggered when the shrinkwrap's Save Date &amp;amp; Time Stamp custom iproperty does not match the STRUCTURE ASSEMBLY.iam file's Save Date &amp;amp; Time Stamp custom iproperty.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hence to auto run the code, first open and save the STRUCTURE ASSEMBLY.iam then open the shrinkwrap file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been slowly getting a handle on writing iLogic code but occasionally get stuck on some parts so any help is very much appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Kurt.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 00:47:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8417783#M91633</guid>
      <dc:creator>kwalker1</dc:creator>
      <dc:date>2018-11-22T00:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8418334#M91640</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2542515"&gt;@kwalker1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, attached part contains ShrinkWrap Component.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, SuppressLinkTOFile property&amp;nbsp;is not supported for ShrinkWrap component in Inventor 2018. But it is supported in Inventor 2019. Try below iLogic code to ShrinkWrap Component.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main()

	Dim oShrinkwrap As PartDocument
	oShrinkwrap = ThisApplication.ActiveDocument

	Dim oDef As PartComponentDefinition 
	oDef = oShrinkwrap.ComponentDefinition 
	 
	Dim oShrinkComp As ShrinkwrapComponent
	For Each oShrinkComp In oDef.ReferenceComponents.ShrinkwrapComponents 
		
		oShrinkComp.SuppressLinkTOFile = True 
		
		iLogicVb.UpdateWhenDone = True

	Next

 

'UPDATE SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP
'iProperties.Value("Custom", "SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP") = iProperties.Value("STRUCTURE ASSEMBLY.iam", "Custom", "STRUCTURE SAVE DATE &amp;amp; TIME STAMP")

'MessageBox.Show("Executing iLogic Code", "Executing iLogic Rule Confirmation")

End Sub&lt;/PRE&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 09:38:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8418334#M91640</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-11-22T09:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8420069#M91666</link>
      <description>&lt;P&gt;Thanks very much Chandra for the information and adjusted code.&lt;/P&gt;
&lt;P&gt;I have now installed Inventor 2019 and it works great.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I'm encountering one other problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to trigger the code to only run when the shrinkwrap file's Date &amp;amp; Time Stamp iproperty does not match the base component's Date &amp;amp; Time Stamp iproperty.&lt;/P&gt;
&lt;P&gt;If triggered, the code will:&lt;/P&gt;
&lt;P&gt;1. Unsuppress link with base component&lt;/P&gt;
&lt;P&gt;2. Update the shrinkwrap&lt;/P&gt;
&lt;P&gt;3. Re-suppresses link with base component&lt;/P&gt;
&lt;P&gt;4. Then updates the shrinkwrap's Date &amp;amp; Time Stamp iproperty to match the base component's Date &amp;amp; Time Stamp iproperty.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem I'm having is that I can't seem to read the base component's iproperty because it is suppressed.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 793px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/572813iA5DAE62A8D8CCE0B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried the following 2 pieces of code but both won't work for me.&lt;/P&gt;
&lt;P&gt;Is there a way to call up an iproperty value of another file which has not be placed / derived / made active within the file that contains the code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;'UPDATE SHRINKWRAP SAVE Date &amp;amp; TIME STAMP

iProperties.Value("Custom", "SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP") = iProperties.Value("STRUCTURE ASSEMBLY.iam", "Custom", "STRUCTURE SAVE DATE &amp;amp; TIME STAMP")&lt;/PRE&gt;
&lt;PRE&gt;'UPDATE SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP (CODE TEST 2)
	
Dim baseComponentFilePath As String
	
baseComponentFilePath = ThisDoc.Path + "\STRUCTURE ASSEMBLY.iam"
	
iProperties.Value("Custom", "SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP") = iProperties.Value(baseComponentFilePath, "Custom", "STRUCTURE SAVE DATE &amp;amp; TIME STAMP")&lt;/PRE&gt;
&lt;P&gt;I have attached an updated model with the code I'm using.&lt;/P&gt;
&lt;P&gt;Many thanks for the help.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 08:24:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8420069#M91666</guid>
      <dc:creator>kwalker1</dc:creator>
      <dc:date>2018-11-23T08:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8420132#M91667</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2542515"&gt;@kwalker1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try below iLogic rule to update custom iProperty from ShrinkWrap component to part document.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main()
	
	Dim oShrinkwrap As PartDocument
	oShrinkwrap = ThisApplication.ActiveDocument
	
	Dim oDef As PartComponentDefinition
	oDef = oShrinkwrap.ComponentDefinition
	
	Dim oShrinkComp As ShrinkwrapComponent
	For Each oShrinkComp In oDef.ReferenceComponents.ShrinkwrapComponents
		 
		oShrinkComp.SuppressLinkToFile = False 	
		
		iLogicVb.UpdateWhenDone = True
		
	Next
	
	For Each oShrinkComp In oDef.ReferenceComponents.ShrinkwrapComponents
		
		Dim oReferDoc As Document
        oReferDoc = oShrinkComp.ReferencedDocumentDescriptor.ReferencedDocument
		
		Dim oPropValue As String 
		oPropValue = oReferDoc.PropertySets.Item(4).Item("STRUCTURE SAVE DATE &amp;amp; TIME STAMP").Value
		
		oShrinkComp.SuppressLinkToFile = True
		
		iProperties.Value("Custom", "SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP") = oPropValue
		
	Next
	
	
	'UPDATE SHRINKWRAP SAVE Date &amp;amp; TIME STAMP (CODE TEST 1)
	
	
	
	
	
	'UPDATE SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP (CODE TEST 2)
	
	'Dim baseComponentFilePath As String
	
	'baseComponentFilePath = ThisDoc.Path + "\STRUCTURE ASSEMBLY.iam"
	
	'iProperties.Value("Custom", "SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP") = iProperties.Value(baseComponentFilePath, "Custom", "STRUCTURE SAVE DATE &amp;amp; TIME STAMP")
	
	
End Sub&lt;/PRE&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 09:08:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8420132#M91667</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-11-23T09:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8423893#M91688</link>
      <description>&lt;P&gt;Thanks Chandra.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code you posted works because it obtains the date and time stamp before the base component is suppressed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem I have is that I wish to check the base component's (STRUCTURE ASSEMBLY.iam) Save Date &amp;amp; Time Stamp custom iproperty before it is unsuppressed in the STRUCTURE ASSEMBLY (SHRINKWRAPPED).ipt file.&lt;/P&gt;
&lt;P&gt;This is to determine whether the base component actually needs to be unsuppressed and updated or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To give some context as to why I'm trying to do this, I have multiple large sub-assemblies with large amounts of iLogic code set to run after opening document.&lt;/P&gt;
&lt;P&gt;So I've shrinkwrapped these sub-assemblies for use in a full General Arrangement model but wish to ensure all the iLogic code in the sub-assemblies don't trigger automatically unless it is necessary.&lt;/P&gt;
&lt;P&gt;Hence this is why the link to the base component is always suppressed in the shrinkwrap unless it is identified as needing an update.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Essentially I need to reference the suppressed base component's Save Date &amp;amp; Time Stamp custom iproperty without opening or unsuppressing it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been trying various pieces of code but can't seem to get it to work.&lt;/P&gt;
&lt;P&gt;I think I might be getting closer with this code but keep getting the error:&lt;/P&gt;
&lt;P&gt;Could not find file 'C:\Users\kwalker\AppData\Local\Temp\c2uo3tfu.dll'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Main()
    
	shrinkwrapStamp = iProperties.Value("Custom", "SHRINKWRAP SAVE DATE &amp;amp; TIME STAMP")
	
	Dim baseComponentFilePath As String
	baseComponentFilePath = ThisDoc.Path + "\STRUCTURE ASSEMBLY.iam"
	
	Dim baseComponentFile As Document
	baseComponentFile = baseComponentFilePath
	
	Dim invDoc As Document
    invDoc = ThisApplication.Document.baseComponentFile
	
    ' Get the user defined property set.
    Dim invCustomPropertySet As PropertySet
    invCustomPropertySet = invDoc.PropertySets.Item("Inventor User Defined Properties")
	
    ' Get the part number property.
    Dim baseComponentStamp As Properties
    baseComponentStamp = invCustomPropertySet.Item("STRUCTURE SAVE DATE &amp;amp; TIME STAMP")
	
	'MessageBox.Show(baseComponentStamp, "Title")
	
	If shrinkwrapStamp &amp;lt;&amp;gt; baseComponentStamp Then
		iLogicVb.RunRule("iLogic Rules")
	Else
		'OTHERWISE Do Nothing And End CODE
	End If
	
End Sub&lt;/PRE&gt;
&lt;P&gt;Thank you for your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Kurt.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 08:32:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8423893#M91688</guid>
      <dc:creator>kwalker1</dc:creator>
      <dc:date>2018-11-26T08:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic To Suppress Link To A Derived Assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8429228#M91814</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2542515"&gt;@kwalker1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try below iLogic code to get custom iProperty of ShriknWrap assembly without opening it. Unfortunately, suppressed shrikwrap assembly is unable to get custom iProperty.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: iLogic code should be run in PartDocument which contains ShrinkWrapComponent.&lt;/P&gt;
&lt;PRE&gt;Sub Main()
	
	Dim oShrinkwrap As PartDocument
	oShrinkwrap = ThisApplication.ActiveDocument
	
	Dim oDef As PartComponentDefinition
	oDef = oShrinkwrap.ComponentDefinition
	
	Dim oShrinkComp As ShrinkwrapComponent
	For Each oShrinkComp In oDef.ReferenceComponents.ShrinkwrapComponents
		
		Dim oReferDoc As Document
        oReferDoc = oShrinkComp.ReferencedDocumentDescriptor.ReferencedDocument
		
		Dim oPropValue As String 
		oPropValue = oReferDoc.PropertySets.Item(4).Item("STRUCTURE SAVE DATE &amp;amp; TIME STAMP").Value
		 MessageBox.Show(oPropValue, "Title")
		
	Next
End Sub&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 05:39:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-suppress-link-to-a-derived-assembly/m-p/8429228#M91814</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-11-28T05:39:59Z</dc:date>
    </item>
  </channel>
</rss>

