<?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: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty. in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11121962#M137124</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11123819"&gt;@4thAxis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that ilogic may be the way to go here, so I'm going to move this to that forum, let the geniuses in there have a look at this and see what magic they can come up with.&amp;nbsp;&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@1E018E9C237C1988568EE667885B902C/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt;&amp;nbsp; Good luck!&lt;/P&gt;</description>
    <pubDate>Fri, 22 Apr 2022 11:06:31 GMT</pubDate>
    <dc:creator>CGBenner</dc:creator>
    <dc:date>2022-04-22T11:06:31Z</dc:date>
    <item>
      <title>On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120231#M137117</link>
      <description>&lt;P&gt;This has to be a setting somewhere. A radio button or something. I use the part number iproperty in my parts list, but not in the way Inventor wants me to. I'm not going to create a custom iproperty with the same/similar name to avoid confusion. What is my best solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference, I work in a machine shop and use customers' part numbers, McMaster part numbers, and sometimes generate our own- for parts lists in drawings. File names are usually part descriptions with or without part numbers. They are rarely ever the same. The file name is more often than not what I use for the "title" iproperty, which is also in my parts lists. Heck, If I could just set Inventor to auto-populate&amp;nbsp;&lt;EM&gt;TITLE&lt;/EM&gt; instead of&amp;nbsp;&lt;EM&gt;PART NUMBER&lt;/EM&gt; with the file name, I'd be a happy camper.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 17:58:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120231#M137117</guid>
      <dc:creator>4thAxis</dc:creator>
      <dc:date>2022-04-21T17:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120376#M137118</link>
      <description>&lt;P&gt;You could make an ilogic rule:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;) = &lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Summary"&lt;/SPAN&gt;, &lt;SPAN&gt;"Title"&lt;/SPAN&gt;)
&lt;SPAN&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
&lt;SPAN&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentUpdate&lt;/SPAN&gt;()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then go to manage tab &amp;gt; ilogic panel &amp;gt; event triggers and drag the rule you created to run before save. When you save it, the rule will run to ensure the pn field is equal to the title.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If did the old fashion Part Number field "=&amp;lt;Title&amp;gt;" works until you do a save as of the part, then it takes on the new name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 19:01:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120376#M137118</guid>
      <dc:creator>blandb</dc:creator>
      <dc:date>2022-04-21T19:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120427#M137119</link>
      <description>&lt;P&gt;Thanks blandb,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd prefer the pn to be blank, until I need to manually enter one in. Is there a way to do that with iLogic as well, without it making it blank again on save?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 19:32:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120427#M137119</guid>
      <dc:creator>4thAxis</dc:creator>
      <dc:date>2022-04-21T19:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120656#M137120</link>
      <description>&lt;P&gt;Edit the code to include a line that sets the Part Number to be blank:&lt;/P&gt;&lt;P&gt;(Make sure you put it &lt;U&gt;&lt;STRONG&gt;after&lt;/STRONG&gt;&lt;/U&gt; the line that copies it to the Title!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;) = &lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Summary"&lt;/SPAN&gt;, &lt;SPAN&gt;"Title"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;) = ""
&lt;SPAN&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
&lt;SPAN&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentUpdate&lt;/SPAN&gt;()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 20:58:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120656#M137120</guid>
      <dc:creator>pcrawley</dc:creator>
      <dc:date>2022-04-21T20:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120679#M137121</link>
      <description>&lt;P&gt;Actually no...&amp;nbsp; Next time you save, the blank Part Number property would overwrite the title, and both would be blank!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would work the first time you save, but both fields would be empty next time you save.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;) = &lt;SPAN&gt;""&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;

&lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Summary"&lt;/SPAN&gt;, &lt;SPAN&gt;"Title"&lt;/SPAN&gt;) = &lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;)
&lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt;(&lt;SPAN&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN&gt;"Part Number"&lt;/SPAN&gt;) = &lt;SPAN&gt;""&lt;/SPAN&gt;
&lt;SPAN&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
&lt;SPAN&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentUpdate&lt;/SPAN&gt;()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 21:06:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120679#M137121</guid>
      <dc:creator>pcrawley</dc:creator>
      <dc:date>2022-04-21T21:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120908#M137122</link>
      <description>&lt;P&gt;Sorry &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11123819"&gt;@4thAxis&lt;/a&gt;&amp;nbsp;- I should never have gotten involved in this...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My second suggestion doesn't really work either.&amp;nbsp; It'll work OK until you decide to put something into the Part Number field.&amp;nbsp; Then, when you hit save, it'll copy the value from Part Number to Title, delete Part Number, and save the file.&amp;nbsp; And that all happens in the background, so who knows when you'll notice what it has done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding custom iProperties: You said "&lt;SPAN&gt;&lt;EM&gt;I'm not going to create a custom iproperty with the same/similar name to avoid confusion&lt;/EM&gt;".&amp;nbsp; Given what else you said in your original post, "Part Number" is ambiguous - it could mean Customer Part Number, McMaster Part Number, or your Part Number.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you created three separate custom iProperties:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Customer Part Number&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Vendor Part Number (you may have more than McMaster as a vendor)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Your Company Part Number&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Then there's no ambiguity, no need for iLogic, and no fighting something Inventor has done since time began.&amp;nbsp; You may have to update your drawing/parts list etc, but for the sake of making things right, it's probably worth the effort.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 23:50:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11120908#M137122</guid>
      <dc:creator>pcrawley</dc:creator>
      <dc:date>2022-04-21T23:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11121364#M137123</link>
      <description>&lt;P&gt;Unfortunately, this is how it has always worked.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only only other options are to manually change it, or stick all your parts in an assembly and delete all the non-part numbers in one go.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;iLogic would be your only other option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 06:05:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11121364#M137123</guid>
      <dc:creator>James_Willo</dc:creator>
      <dc:date>2022-04-22T06:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11121962#M137124</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11123819"&gt;@4thAxis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that ilogic may be the way to go here, so I'm going to move this to that forum, let the geniuses in there have a look at this and see what magic they can come up with.&amp;nbsp;&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@1E018E9C237C1988568EE667885B902C/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt;&amp;nbsp; Good luck!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 11:06:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11121962#M137124</guid>
      <dc:creator>CGBenner</dc:creator>
      <dc:date>2022-04-22T11:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11122268#M137127</link>
      <description>&lt;P&gt;Just some thoughts but...&amp;nbsp; Tt seems to me that the file name is generally written to the Part Number iProperty on 'initial' save only, then it does not do that anymore after that point.&amp;nbsp; If that is the case, then I do believe we can use an iLogic rule for this.&amp;nbsp; However, I think we would need to utilize the 'After Save' Event Trigger, instead of before, so that the action has already taken place, so that we can correct it.&amp;nbsp; Then to limit the rule to only work on the document on the first save, then not any more after that, I believe we can use the Document.FileSaveCounter property.&amp;nbsp; It should return zero, if it has not been saved before, and 1 at first save, then will always be more than one.&amp;nbsp; So, if that property returns 1, run our code to clear the Part Number value.&amp;nbsp; Then any additional times you save that document, the rule will still be triggered to run by the Event Triggers, but it will not do anything to the document.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;oDoc = ThisDoc.Document
If oDoc.FileSaveCounter = 1 Then
	Dim oPNProp As Inventor.Property = oDoc.PropertySets.Item("Design Tracking Properties").Item("Part Number")
	Dim oPN As String = oPNProp.Value
	If oPN &amp;lt;&amp;gt; "" Then oPNProp.Value = ""
	If oPNProp.Dirty Then 'Dirty = has been changed to since last save
		oDoc.Save
	End If
End If&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even this might possibly be risky though, if you commonly write something to that Part Number iProperty before it is saved for the first time.&amp;nbsp; With the solution above, that data may be lost.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to be able to preserve any data that may have already been in the Part Number iProperty before the initial save, then I would propose a second iLogic rule that will be triggered to run 'Before Save', and only does something when FileSaveCounter = 0, and gets the current value of the Part Number iProperty.&amp;nbsp; If it is empty, then don't do anything else.&amp;nbsp; If it is not empty, record its value to a SharedVariable.&amp;nbsp; Then edit this rule above to check if that SharedVariable.Exists(), and if it does, get the value from it.&amp;nbsp; If the current Part Number values (after initial save) does not match what was recorded (before initial save), then overwrite it with the value from before save.&amp;nbsp; Then, only if those actions took place, get rid of the SharedVariable, to clean up.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Correction:&amp;nbsp; If you have written something to the Part Number iProperty prior to initial save, then when you save it for the first time, it will not overwrite that pre-existing Part Number value.&amp;nbsp; But if the Part Number iProperty was empty when you initially save it, it will fill it in with the file name automatically.&amp;nbsp; So, putting a default or placeholder type value in there for the Part Number iProperty value may prevent this unwanted behavior altogether.&amp;nbsp; (behavior tested in Inventor 2022)&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 13:33:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11122268#M137127</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-04-22T13:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11122279#M137128</link>
      <description>&lt;P&gt;you can check with the "before save event" what the PartNumber was&lt;/P&gt;
&lt;P&gt;you can set with the "after save event" what the PartNumber must be.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have this put into a small addin for inventor.&lt;/P&gt;
&lt;P&gt;Send me a private message and I can give to you.&lt;/P&gt;
&lt;P&gt;The addin prevents the partnumber from update on save and leaves the partnumber as it was before save.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 19:48:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11122279#M137128</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2022-04-24T19:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11125418#M137182</link>
      <description>&lt;P&gt;Please read my previous post about the addin.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 19:49:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11125418#M137182</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2022-04-24T19:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: On save, I don't want the File Name to auto-populate the PART NUMBER iProperty.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11136840#M137422</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;Thank you for the help!&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 01:28:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/on-save-i-don-t-want-the-file-name-to-auto-populate-the-part/m-p/11136840#M137422</guid>
      <dc:creator>4thAxis</dc:creator>
      <dc:date>2022-04-29T01:28:53Z</dc:date>
    </item>
  </channel>
</rss>

