<?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: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file) in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9948895#M119232</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7787526"&gt;@Khoa_NguyenDang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a very similar error with the thicken feature, the difference is I was creating the faces also using code that is being used for thicken.&amp;nbsp;&amp;nbsp;Can you also explain when you are iterating through for loop what is "laminate"? is it a solid body or a feature? If you can send the file in which it works with your code and also the file in which it does not work maybe I can check if it is suitable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not good with C#, but I have created the code long back in VB.Net where I was iterating through features and then finding a feature, that is a surface extrude, before iterating to the faces, I have cleared the object collection that is created (so that it will not try to thicken the face that is already thickened, try this I think that will do the trick) and I have added the counter, which is used for naming the thicken features. See below code for reference and see if it helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;	&lt;SPAN&gt;FCount&lt;/SPAN&gt; = 1
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FaceCollection&lt;/SPAN&gt;
	   	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateFaceCollection&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartFeature&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;
			&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;.&lt;SPAN&gt;Contains&lt;/SPAN&gt;(&lt;SPAN&gt;"Partition"&lt;/SPAN&gt;)
				&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Clear&lt;/SPAN&gt;
				    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oFeat&lt;/SPAN&gt;.&lt;SPAN&gt;SurfaceBodies&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1).&lt;SPAN&gt;Faces&lt;/SPAN&gt;
	       			 	&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFace&lt;/SPAN&gt;)
							&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ThickenFeature&lt;/SPAN&gt;
	    					        &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;ThickenFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;, &lt;SPAN&gt;"4"&lt;/SPAN&gt;,&lt;SPAN&gt;kSymmetricExtentDirection&lt;/SPAN&gt;,&lt;SPAN&gt;kNewBodyOperation&lt;/SPAN&gt;,&lt;SPAN&gt;False&lt;/SPAN&gt;)
							&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Thicken-Partition"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;FCount&lt;/SPAN&gt;
							&lt;SPAN&gt;FCount&lt;/SPAN&gt; = &lt;SPAN&gt;FCount&lt;/SPAN&gt; +1 
	  				 &lt;SPAN&gt;Next&lt;/SPAN&gt;
			&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
		&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this has answered your question, please accept it as a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dutt Thakar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Dec 2020 13:19:27 GMT</pubDate>
    <dc:creator>dutt.thakar</dc:creator>
    <dc:date>2020-12-18T13:19:27Z</dc:date>
    <item>
      <title>Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9948460#M119227</link>
      <description>&lt;P&gt;Hi Everybody&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you ever met the error with ThickenFeature in Inventor&lt;/P&gt;&lt;P&gt;I have created code to thicken faces that I selected before&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in the new part file, the code is very normal and work well&lt;/P&gt;&lt;P&gt;But when I open 1 part file (which created it by &lt;STRONG&gt;Making a component&lt;/STRONG&gt; from the MultiSolid part file) the code just can create the first thicken face, it met the error for the second and stop the code for the first time I run code in that part file for the first time. When I that code for the second time, it works normally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Does anyone have experience with my issue?&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you help any ideas, please help me&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="Khoa_NguyenDang_0-1608280974072.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/857741i57C5FCA276A4CE92/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Khoa_NguyenDang_0-1608280974072.png" alt="Khoa_NguyenDang_0-1608280974072.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I also attach my code here so you guys can know my code&amp;nbsp;&lt;/P&gt;&lt;P&gt;foreach (Face face in laminate)&lt;BR /&gt;{&lt;BR /&gt;FaceCollection FacesCol = default(FaceCollection);&lt;BR /&gt;FacesCol = _invApp.TransientObjects.CreateFaceCollection();&lt;BR /&gt;FacesCol.Add(face);&lt;/P&gt;&lt;P&gt;oThickFeat = partDef.Features.ThickenFeatures.Add(FacesCol, laminate_thick.Text + "mm", PartFeatureExtentDirectionEnum.kNegativeExtentDirection, PartFeatureOperationEnum.kNewBodyOperation, false, false, false);&lt;BR /&gt;oThickFeat.SurfaceBody.Name = "Laminate " + i.ToString();&lt;BR /&gt;oThickFeat.Name = "Thicken_Laminate " + i.ToString(); ;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much and hope someone can help me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 08:47:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9948460#M119227</guid>
      <dc:creator>Khoa_NguyenDang</dc:creator>
      <dc:date>2020-12-18T08:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9948895#M119232</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7787526"&gt;@Khoa_NguyenDang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a very similar error with the thicken feature, the difference is I was creating the faces also using code that is being used for thicken.&amp;nbsp;&amp;nbsp;Can you also explain when you are iterating through for loop what is "laminate"? is it a solid body or a feature? If you can send the file in which it works with your code and also the file in which it does not work maybe I can check if it is suitable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not good with C#, but I have created the code long back in VB.Net where I was iterating through features and then finding a feature, that is a surface extrude, before iterating to the faces, I have cleared the object collection that is created (so that it will not try to thicken the face that is already thickened, try this I think that will do the trick) and I have added the counter, which is used for naming the thicken features. See below code for reference and see if it helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;	&lt;SPAN&gt;FCount&lt;/SPAN&gt; = 1
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FaceCollection&lt;/SPAN&gt;
	   	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateFaceCollection&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartFeature&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;
			&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;.&lt;SPAN&gt;Contains&lt;/SPAN&gt;(&lt;SPAN&gt;"Partition"&lt;/SPAN&gt;)
				&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Clear&lt;/SPAN&gt;
				    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oFeat&lt;/SPAN&gt;.&lt;SPAN&gt;SurfaceBodies&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1).&lt;SPAN&gt;Faces&lt;/SPAN&gt;
	       			 	&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFace&lt;/SPAN&gt;)
							&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ThickenFeature&lt;/SPAN&gt;
	    					        &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;ThickenFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;, &lt;SPAN&gt;"4"&lt;/SPAN&gt;,&lt;SPAN&gt;kSymmetricExtentDirection&lt;/SPAN&gt;,&lt;SPAN&gt;kNewBodyOperation&lt;/SPAN&gt;,&lt;SPAN&gt;False&lt;/SPAN&gt;)
							&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Thicken-Partition"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;FCount&lt;/SPAN&gt;
							&lt;SPAN&gt;FCount&lt;/SPAN&gt; = &lt;SPAN&gt;FCount&lt;/SPAN&gt; +1 
	  				 &lt;SPAN&gt;Next&lt;/SPAN&gt;
			&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
		&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this has answered your question, please accept it as a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dutt Thakar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 13:19:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9948895#M119232</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2020-12-18T13:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9950402#M119260</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Very thanks for your reply&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually, Laminate is just a name I put for the new solid and the thicken feature&lt;/P&gt;&lt;P&gt;You can also check my attached IPT file (This file works when I create a new Part file, not a part created by Make Components)&lt;/P&gt;&lt;P&gt;Here is the error in Visual Studio when I have a problem in using code&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: The code will work if it is a new Part file&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code will have trouble if it is a part created by Make Components&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code will have trouble if use code in the ActiveEdit Document in Assembly Environment&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&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="Khoa_NguyenDang_0-1608347272460.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/858069i99E9587152BC6D25/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Khoa_NguyenDang_0-1608347272460.png" alt="Khoa_NguyenDang_0-1608347272460.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Khoa_NguyenDang_1-1608347276576.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/858070i615E16D36590CD89/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Khoa_NguyenDang_1-1608347276576.png" alt="Khoa_NguyenDang_1-1608347276576.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Dec 2020 03:13:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9950402#M119260</guid>
      <dc:creator>Khoa_NguyenDang</dc:creator>
      <dc:date>2020-12-19T03:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953322#M119274</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7787526"&gt;@Khoa_NguyenDang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for sending the part. I did a small test in iLogic, see below code. I also have attached a screencast to show you that it is creating thicken in the derived part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSB&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SurfaceBody&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;SurfaceBodies&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1) &lt;SPAN&gt;' This is first solid after derive "Laminate"&lt;/SPAN&gt;
&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;oSB&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;)
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartFeature&lt;/SPAN&gt;
&lt;SPAN&gt;i&lt;/SPAN&gt; = 1
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Face&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oSB&lt;/SPAN&gt;.&lt;SPAN&gt;Faces&lt;/SPAN&gt;
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FaceCollection&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateFaceCollection&lt;/SPAN&gt;
	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Clear&lt;/SPAN&gt;
	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFace&lt;/SPAN&gt;)
	&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;ThickenFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;, &lt;SPAN&gt;"5"&lt;/SPAN&gt;, &lt;SPAN&gt;kSymmetricExtentDirection&lt;/SPAN&gt;, &lt;SPAN&gt;kNewBodyOperation&lt;/SPAN&gt;, &lt;SPAN&gt;False&lt;/SPAN&gt;)
	&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Laminate"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;i&lt;/SPAN&gt;
	&lt;SPAN&gt;i&lt;/SPAN&gt; = &lt;SPAN&gt;i&lt;/SPAN&gt; + 1
	
&lt;SPAN&gt;Next&lt;/SPAN&gt;
	
 &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If this has answered your question, please accept this as a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dutt Thakar&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2020 06:45:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953322#M119274</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2020-12-21T06:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953324#M119275</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container" style="position: relative; height: 0; margin: 0; padding-bottom: 101.5625%;"&gt;&lt;IFRAME width="640" height="650" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%;" src="https://screencast.autodesk.com/Embed/Timeline/4360c0f9-ebbe-4ed2-8af9-34c089606ecd" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" scrolling="no"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 21 Dec 2020 06:46:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953324#M119275</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2020-12-21T06:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953343#M119276</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your&amp;nbsp;devoted reply&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will check again, and notice you if my problem still occurs&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Note: Actually, in my case, I will not thicken all the face of solid, just faces that I select by Pick method before&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thank you so much, I will try your advise&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2020 07:02:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953343#M119276</guid>
      <dc:creator>Khoa_NguyenDang</dc:creator>
      <dc:date>2020-12-21T07:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953568#M119282</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your advice&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the problem still occurs although I use exactly your code&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my case, I do not &lt;EM&gt;&lt;STRONG&gt;D&lt;/STRONG&gt;&lt;STRONG&gt;erive&lt;/STRONG&gt;&lt;/EM&gt; the part as your video&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use thicken code for the part created by the &lt;EM&gt;&lt;STRONG&gt;Make Component&lt;/STRONG&gt; &lt;/EM&gt;function&amp;nbsp;&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="Khoa_NguyenDang_0-1608546447856.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/858547i88D24AAD27F33A4F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Khoa_NguyenDang_0-1608546447856.png" alt="Khoa_NguyenDang_0-1608546447856.png" /&gt;&lt;/span&gt;&amp;nbsp;&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="Khoa_NguyenDang_1-1608546913165.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/858549iE309D4D6DE9769DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Khoa_NguyenDang_1-1608546913165.png" alt="Khoa_NguyenDang_1-1608546913165.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have know for my case&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2020 10:36:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953568#M119282</guid>
      <dc:creator>Khoa_NguyenDang</dc:creator>
      <dc:date>2020-12-21T10:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953604#M119283</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7787526"&gt;@Khoa_NguyenDang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you take the face object collection creation out of the loop and check? try below code. I have crated a new part using make components and tried this rule and it works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSB&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SurfaceBody&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;SurfaceBodies&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1) &lt;SPAN&gt;' This is first solid after derive "Laminate"&lt;/SPAN&gt;
&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;oSB&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;)
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FaceCollection&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateFaceCollection&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartFeature&lt;/SPAN&gt;
&lt;SPAN&gt;i&lt;/SPAN&gt; = 1
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Face&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oSB&lt;/SPAN&gt;.&lt;SPAN&gt;Faces&lt;/SPAN&gt;
	
	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Clear&lt;/SPAN&gt;
	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFace&lt;/SPAN&gt;)
	&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;ThickenFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;, &lt;SPAN&gt;"5"&lt;/SPAN&gt;, &lt;SPAN&gt;kSymmetricExtentDirection&lt;/SPAN&gt;, &lt;SPAN&gt;kNewBodyOperation&lt;/SPAN&gt;, &lt;SPAN&gt;False&lt;/SPAN&gt;)
	&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Laminate"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;i&lt;/SPAN&gt;
	&lt;SPAN&gt;i&lt;/SPAN&gt; = &lt;SPAN&gt;i&lt;/SPAN&gt; + 1
	
&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/PRE&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="KC-New part.PNG" style="width: 548px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/858551i2047EC3009EBB86E/image-dimensions/548x323?v=v2" width="548" height="323" role="button" title="KC-New part.PNG" alt="KC-New part.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;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="KC-2.png" style="width: 571px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/858553iC732C20E78511341/image-dimensions/571x341?v=v2" width="571" height="341" role="button" title="KC-2.png" alt="KC-2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dutt Thakar&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2020 11:03:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953604#M119283</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2020-12-21T11:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953635#M119284</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7787526"&gt;@Khoa_NguyenDang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this code which allows you to select the faces first and then when you run the rule it will only thicken those which are selected. You can select one or multiple faces. Make sure you select the faces first and then only run the rule. If you get an error, try to comment the last line in the loop which is renaming thicken features, because if you run again and you have the same names it may result in an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSB&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SurfaceBody&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;SurfaceBodies&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1) &lt;SPAN&gt;' This is first solid after derive "Laminate"&lt;/SPAN&gt;
&lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;oSB&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;)
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartFeature&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFaceCol&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FaceCollection&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateFaceCollection&lt;/SPAN&gt;
&lt;SPAN&gt;i&lt;/SPAN&gt; = 1
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSS&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SelectSet&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;SelectSet&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Face&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oSS&lt;/SPAN&gt;
	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Clear&lt;/SPAN&gt;
	&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFace&lt;/SPAN&gt;)
	&lt;SPAN&gt;oSS&lt;/SPAN&gt;.&lt;SPAN&gt;SelectMultiple&lt;/SPAN&gt;(&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;)
	&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt; = &lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;Features&lt;/SPAN&gt;.&lt;SPAN&gt;ThickenFeatures&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oFaceCol&lt;/SPAN&gt;, &lt;SPAN&gt;"5"&lt;/SPAN&gt;, &lt;SPAN&gt;kSymmetricExtentDirection&lt;/SPAN&gt;, &lt;SPAN&gt;kNewBodyOperation&lt;/SPAN&gt;, &lt;SPAN&gt;False&lt;/SPAN&gt;)
	&lt;SPAN&gt;oThickFeat&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Laminate"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;i&lt;/SPAN&gt;
	&lt;SPAN&gt;i&lt;/SPAN&gt; = &lt;SPAN&gt;i&lt;/SPAN&gt; + 1
&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See if it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dutt Thakar&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2020 11:43:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9953635#M119284</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2020-12-21T11:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9957467#M119334</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your code&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried it, but in your way, you use VBA and I-Logic in Inventor to run the code&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in my way, I use API (code with Visual Basic), so maybe it also the reason for it&amp;nbsp;&lt;/P&gt;&lt;P&gt;I include the lick for the video in which I record the error when using the Thicken feature&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope through this video you can have a new idea for my problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Inventor API - Thicken Error&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/37EweLk" target="_blank"&gt;https://autode.sk/37EweLk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 02:50:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9957467#M119334</guid>
      <dc:creator>Khoa_NguyenDang</dc:creator>
      <dc:date>2020-12-23T02:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor API - Thicken Error in Part (Make Components from Multi Solid part file)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9957548#M119335</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6518271"&gt;@dutt.thakar&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help in r&lt;SPAN&gt;ecent days&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;With your help, I also found the solution to my problem &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Now it can work normally when I run the code&lt;/P&gt;&lt;P&gt;Thank you so much&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 04:29:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-api-thicken-error-in-part-make-components-from-multi/m-p/9957548#M119335</guid>
      <dc:creator>Khoa_NguyenDang</dc:creator>
      <dc:date>2020-12-23T04:29:59Z</dc:date>
    </item>
  </channel>
</rss>

