<?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 Error ilogic - Recognize bendings in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8614449#M78519</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use the ilogic code below to recognize if there are bendings in a sheet metal file.&lt;/P&gt;
&lt;P&gt;The result is put in a costum iproperty (Bend exist /&amp;nbsp; No bend exist.&lt;/P&gt;
&lt;P&gt;The code does what it has to do..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub Main()
Dim a As Inventor.Application
a = ThisApplication

Dim b As PartDocument
 b = a.ActiveDocument
'Dim b As Inventor.Document
'b= thisdoc.document
Dim sm As SheetMetalComponentDefinition
sm = b.ComponentDefinition

MsgBox (sm.Bends.Count)
Dim customProp As Inventor.Property
On Error Resume Next
customProp = b.PropertySets.Item(4).Add("Bend Exist", "Bending")

If Err.Description Then
	Err.Clear
End If
customProp = b.PropertySets.Item(4).Item("Bending")

If sm.Bends.Count &amp;gt; 0 Then

customProp.Value = "Bend Exist"

Else If sm.Bends.Count = 0 Then	

customProp.Value = "No Bend Exist"

End If
End Sub&lt;/PRE&gt;
&lt;P&gt;But I get the following error message while saving a assembly with a sheet metal file.&lt;/P&gt;
&lt;P&gt;Is there anyone who can help me to solve this?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;Error in rule: Bending, in document: 24783.ipt

Unable to cast COM object of type 'System.__ComObject' to interface type 'Inventor.PartDocument'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{29F0D463-C114-11D2-B77F-0060B0F159EF}' failed due to the following error: Interface wordt niet ondersteund (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).&lt;/PRE&gt;
&lt;P&gt;Thank you in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Feb 2019 14:35:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-02-22T14:35:13Z</dc:date>
    <item>
      <title>Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8614449#M78519</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use the ilogic code below to recognize if there are bendings in a sheet metal file.&lt;/P&gt;
&lt;P&gt;The result is put in a costum iproperty (Bend exist /&amp;nbsp; No bend exist.&lt;/P&gt;
&lt;P&gt;The code does what it has to do..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub Main()
Dim a As Inventor.Application
a = ThisApplication

Dim b As PartDocument
 b = a.ActiveDocument
'Dim b As Inventor.Document
'b= thisdoc.document
Dim sm As SheetMetalComponentDefinition
sm = b.ComponentDefinition

MsgBox (sm.Bends.Count)
Dim customProp As Inventor.Property
On Error Resume Next
customProp = b.PropertySets.Item(4).Add("Bend Exist", "Bending")

If Err.Description Then
	Err.Clear
End If
customProp = b.PropertySets.Item(4).Item("Bending")

If sm.Bends.Count &amp;gt; 0 Then

customProp.Value = "Bend Exist"

Else If sm.Bends.Count = 0 Then	

customProp.Value = "No Bend Exist"

End If
End Sub&lt;/PRE&gt;
&lt;P&gt;But I get the following error message while saving a assembly with a sheet metal file.&lt;/P&gt;
&lt;P&gt;Is there anyone who can help me to solve this?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;Error in rule: Bending, in document: 24783.ipt

Unable to cast COM object of type 'System.__ComObject' to interface type 'Inventor.PartDocument'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{29F0D463-C114-11D2-B77F-0060B0F159EF}' failed due to the following error: Interface wordt niet ondersteund (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).&lt;/PRE&gt;
&lt;P&gt;Thank you in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 14:35:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8614449#M78519</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-22T14:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8614531#M78520</link>
      <description>&lt;P&gt;Hi, if you apply this rule in a sheet file and it works, check the line that says&lt;BR /&gt;&amp;nbsp; "b = a.ActiveDocument"&lt;BR /&gt;If you came to place events before saving the part, and you have opened an assembly and you save everything, the active document in this case is the assembly and you may get the error for that reason. Try changing by this other line&lt;BR /&gt;"b = ThisDoc.Document"&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 15:01:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8614531#M78520</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-02-22T15:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8618224#M78521</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide sample assembly file with sheet metal parts (make sure that files are non confidential) and steps to reproduce issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 06:40:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8618224#M78521</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2019-02-25T06:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621085#M78522</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find attach an sample file (pack en go).&lt;/P&gt;
&lt;P&gt;The problem arises only once!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To simulate the problem you must make a change in the sheet metal file and then save the assembly again.&lt;/P&gt;
&lt;P&gt;When the assembly is saved it will not happen again until a change is made in the sheet metal file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt; Unfortunately this does not help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 06:55:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621085#M78522</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-26T06:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621199#M78523</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Change&amp;nbsp;iLogic code like below. It make sure that document is sheet metal document.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub Main()
	Dim a As Inventor.Application
	a = ThisApplication
	
	Dim doc = ThisDoc.Document
	If doc.SubType = "{9C464203-9BAE-11D3-8BAD-0060B0CE6BB4}" Then 
		Dim b As PartDocument
		 b = a.ActiveDocument
		'Dim b As Inventor.Document
		'b= thisdoc.document
		Dim sm As SheetMetalComponentDefinition
		sm = b.ComponentDefinition

		MsgBox (sm.Bends.Count)
		Dim customProp As Inventor.Property
		On Error Resume Next
		customProp = b.PropertySets.Item(4).Add("Bend Exist", "Bending")

		If Err.Description Then
			Err.Clear
		End If
		customProp = b.PropertySets.Item(4).Item("Bending")

		If sm.Bends.Count &amp;gt; 0 Then

		customProp.Value = "Bend Exist"

		Else If sm.Bends.Count = 0 Then	

		customProp.Value = "No Bend Exist"

		End If
	Else
		Exit Sub 
	End If 
	
End Sub&lt;/PRE&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 07:58:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621199#M78523</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2019-02-26T07:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621244#M78524</link>
      <description>&lt;P&gt;Make these changes and I find Inv 2018,&amp;nbsp;please watch the video&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fy2_sG36Ot-0%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dy2_sG36Ot-0&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fy2_sG36Ot-0%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="capture 1" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what inventor's version do you have?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Public&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;Main&lt;/SPAN&gt;()
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;a&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;Application&lt;/SPAN&gt;
&lt;SPAN&gt;a&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;b&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;
 &lt;SPAN&gt;b&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
 
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;sm&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SheetMetalComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;sm&lt;/SPAN&gt; = &lt;SPAN&gt;b&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;MsgBox&lt;/SPAN&gt; (&lt;SPAN&gt;sm&lt;/SPAN&gt;.&lt;SPAN&gt;Bends&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt;)
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;customProp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;Property&lt;/SPAN&gt;
&lt;SPAN&gt;On&lt;/SPAN&gt; &lt;SPAN&gt;Error&lt;/SPAN&gt; &lt;SPAN&gt;Resume&lt;/SPAN&gt; &lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;customProp&lt;/SPAN&gt; = &lt;SPAN&gt;b&lt;/SPAN&gt;.&lt;SPAN&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(4).&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;"Bend Exist"&lt;/SPAN&gt;, &lt;SPAN&gt;"Bending"&lt;/SPAN&gt;)

&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Err&lt;/SPAN&gt;.&lt;SPAN&gt;Description&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;Err&lt;/SPAN&gt;.&lt;SPAN&gt;Clear&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;customProp&lt;/SPAN&gt; = &lt;SPAN&gt;b&lt;/SPAN&gt;.&lt;SPAN&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(4).&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Bending"&lt;/SPAN&gt;)

&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;sm&lt;/SPAN&gt;.&lt;SPAN&gt;Bends&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt; &amp;gt; 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;

&lt;SPAN&gt;customProp&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt; = &lt;SPAN&gt;"Bend Exist"&lt;/SPAN&gt;

&lt;SPAN&gt;Else&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;sm&lt;/SPAN&gt;.&lt;SPAN&gt;Bends&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt; = 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;	

&lt;SPAN&gt;customProp&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt; = &lt;SPAN&gt;"No Bend Exist"&lt;/SPAN&gt;

&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 08:17:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621244#M78524</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-02-26T08:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621960#M78525</link>
      <description>&lt;P&gt;I know that piece of code, ha ha....&lt;/P&gt;
&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it working now or shall I send you an update!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 13:55:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8621960#M78525</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-26T13:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623851#M78526</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I receive new errors whit this code. But thanks your help!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/473476"&gt;@bradeneuropeArthur&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I use you code everything works perfectly except for one thing.&lt;/P&gt;
&lt;P&gt;When saving the template file I get an error.. (see pictures below).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if I just save the template and use it then it works well.&lt;/P&gt;
&lt;P&gt;Should this still be resolved or is this error innocent?&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="Error Ilogic 1.png" style="width: 562px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/607876i2D0614D1CBEBB014/image-size/large?v=v2&amp;amp;px=999" role="button" title="Error Ilogic 1.png" alt="Error Ilogic 1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Error Ilogic 2.png" style="width: 898px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/607877iBA74C027E12F4A32/image-size/large?v=v2&amp;amp;px=999" role="button" title="Error Ilogic 2.png" alt="Error Ilogic 2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3 class="LC20lb"&gt;I truly appreciate your time and effort&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 07:20:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623851#M78526</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-27T07:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623854#M78527</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You talk about the code above here ONLY?&lt;/P&gt;
&lt;P&gt;Or is there more code in your file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 07:25:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623854#M78527</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-27T07:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623906#M78528</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/473476"&gt;@bradeneuropeArthur&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The ilogic code from &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt;&amp;nbsp;is the only code in the template.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Jeffrey&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 07:52:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623906#M78528</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-27T07:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623921#M78529</link>
      <description>&lt;P&gt;I will give it a short test/look.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 07:59:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623921#M78529</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-27T07:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623937#M78530</link>
      <description>&lt;P&gt;is the template a "sheet metal part" or a "normal part"?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:07:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623937#M78530</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-27T08:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623942#M78531</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/473476"&gt;@bradeneuropeArthur&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a sheet metal template..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:10:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623942#M78531</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-27T08:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623946#M78532</link>
      <description>&lt;P&gt;Are you running the code above "on save"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:11:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623946#M78532</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-27T08:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623957#M78533</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before save document (please see picture below.)&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="Ilogic trigger.png" style="width: 457px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/607900iC703387DDA4C1626/image-size/large?v=v2&amp;amp;px=999" role="button" title="Ilogic trigger.png" alt="Ilogic trigger.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:16:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623957#M78533</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-27T08:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623985#M78534</link>
      <description>&lt;P&gt;hi how are you, a small detail, have you noticed that the initial files that you have shared are read only? in the video modify this because otherwise it does not allow me to save the files, maybe it can give you problems if one is reading and the other is not.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:26:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623985#M78534</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-02-27T08:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623991#M78535</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very good and how are you?&lt;/P&gt;
&lt;P&gt;I think this is because I use vault professional..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:30:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623991#M78535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-27T08:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623997#M78536</link>
      <description>&lt;P&gt;Do you have permission to write and edit the template file in the specific directory (Template Directory)?&lt;/P&gt;
&lt;P&gt;Because the file wants to write on save.&lt;/P&gt;
&lt;P&gt;better is to trigger if the file requires a update and not to run it always on save if not necessary!!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:34:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8623997#M78536</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-27T08:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8624008#M78537</link>
      <description>&lt;P&gt;Ì have permission two write the file in the template direction.&lt;/P&gt;
&lt;P&gt;I check the file out and then I have write permission.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Okay, but that wil not solve the error which I get while saving the template?&lt;/P&gt;
&lt;P&gt;perhaps I can change the event trigger to: Part geometry change?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jeffrey&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:40:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8624008#M78537</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-27T08:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error ilogic - Recognize bendings</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8624045#M78538</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am investigating the issue.&lt;/P&gt;
&lt;P&gt;For me the code runs fine!&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;For my understanding:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The template file location is a vault workspace location, right?&lt;/P&gt;
&lt;P&gt;Is the location in the workspace directory or outside the workspace directory?&lt;/P&gt;
&lt;P&gt;Seems to have to do with the permissions of vault security or directory security.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you make a screenshot of your vault browser with the Project directory and the template directory/&lt;/P&gt;
&lt;P&gt;Are you able to save the file anywhere else with succes or not?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 08:53:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/error-ilogic-recognize-bendings/m-p/8624045#M78538</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-02-27T08:53:13Z</dc:date>
    </item>
  </channel>
</rss>

