<?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 Betreff: Save part and use selected case and length as extension in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890285#M151233</link>
    <description>Hi Richter&lt;BR /&gt;&lt;BR /&gt;Thank you very much, due to holiday and a busy schedule I will be able to try it next week.&lt;BR /&gt;But I'll definitely let you know if the code works.&lt;BR /&gt;</description>
    <pubDate>Wed, 12 Apr 2023 11:44:29 GMT</pubDate>
    <dc:creator>J.VandeMerckt</dc:creator>
    <dc:date>2023-04-12T11:44:29Z</dc:date>
    <item>
      <title>Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11877776#M151079</link>
      <description>&lt;P&gt;Hi Forum&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a part file where I can change the length of a part.&lt;BR /&gt;The part also has a simple iLogic code with different cases. The cases select what extrusions should be active or suppressed.&lt;BR /&gt;&lt;BR /&gt;I want to make a Form where I choose the length and Case.&lt;BR /&gt;Then be able to press save (save as), The length and selected case should be used as a extensions behind the original file name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think this should be a complicated code but I'm very new to Ilogic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I use to Select the case:&lt;/P&gt;&lt;PRE&gt;	        &lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200 CONT"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200 DOWN"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200 UP"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø250 CONT"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø250 DOWN"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø250 UP"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;
			
			
			&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;FixedUnit_Curve&lt;/SPAN&gt;
	
        &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Ø200 CONT"&lt;/SPAN&gt;
            &lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200 CONT"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;

        &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Ø200 DOWN"&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200 DOWN"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;
			
        &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Ø200 UP"&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø200 UP"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;
			
        &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Ø250 CONT"&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø250 CONT"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;
			
        &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Ø250 DOWN"&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø250 DOWN"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;
			
        &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Ø250 UP"&lt;/SPAN&gt;
			&lt;SPAN&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"Ø250 UP"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;
			
		&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&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;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;I use this code to open the form when opening the file.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;iLogicForm&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;"Fixed Unit Curve and Length"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;Let me know if you guys need anymore info!&lt;/P&gt;&lt;P&gt;Thanks &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 14:34:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11877776#M151079</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-06T14:34:45Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890254#M151228</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would try the following:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim currentfilename As String
Dim choice As String
Dim length As String


currentfilename = ThisDoc.FileName(False)

choice = Parameter("FixedUnit_Curve")
length = Parameter("length")

'custom filepath
'SetTheFilePathHere = "C:\ ... your filepath ..."

'filepath same as the current ipt
SetTheFilePathHere = ThisDoc.Path

SetTheFilenameHere = currentfilename &amp;amp; " " &amp;amp; choice &amp;amp; " " &amp;amp; length


ThisApplication.CommandManager.PostPrivateEvent(kFileNameEvent, SetTheFilePathHere &amp;amp;"\" &amp;amp; SetTheFilenameHere &amp;amp; ".ipt")

Dim oCtrlDef
oCtrlDef = ThisApplication.CommandManager.ControlDefinitions.Item("AppFileSaveCopyAsCmd")
oCtrlDef.Execute
&lt;/LI-CODE&gt;&lt;P&gt;I assume that you are using a custom Parameter for the length as well? If that's the case you have to edit the parameter name in Line 9 to the one you are using.&lt;/P&gt;&lt;P&gt;Let me know if it worked &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 11:32:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890254#M151228</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-12T11:32:02Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890285#M151233</link>
      <description>Hi Richter&lt;BR /&gt;&lt;BR /&gt;Thank you very much, due to holiday and a busy schedule I will be able to try it next week.&lt;BR /&gt;But I'll definitely let you know if the code works.&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2023 11:44:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890285#M151233</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-12T11:44:29Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890934#M151254</link>
      <description>&lt;P&gt;Hi Richter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works as intended! Beautiful!&lt;BR /&gt;Now I would like that the new file is checked into Vault.&lt;BR /&gt;Do you know any code to make this happen?&lt;/P&gt;&lt;P&gt;This way we can use the files without having to open them and checking them in manually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the coded which I changed very little to make it work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;currentfilename&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;choice&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;length&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;


&lt;SPAN&gt;currentfilename&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;FileName&lt;/SPAN&gt;(&lt;SPAN&gt;False&lt;/SPAN&gt;)

&lt;SPAN&gt;choice&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;"FixedUnit_Curve"&lt;/SPAN&gt;)
&lt;SPAN&gt;length&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;"FixedUnit_Length"&lt;/SPAN&gt;)

&lt;SPAN&gt;'custom filepath&lt;/SPAN&gt;
&lt;SPAN&gt;'SetTheFilePathHere = "C:\ ... your filepath ..."&lt;/SPAN&gt;

&lt;SPAN&gt;'filepath same as the current ipt&lt;/SPAN&gt;
&lt;SPAN&gt;SetTheFilePathHere&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Path&lt;/SPAN&gt;

&lt;SPAN&gt;SetTheFilenameHere&lt;/SPAN&gt; = &lt;SPAN&gt;currentfilename&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;" - "&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;choice&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;" - L"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;length&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"mm"&lt;/SPAN&gt;


&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;PostPrivateEvent&lt;/SPAN&gt;(&lt;SPAN&gt;kFileNameEvent&lt;/SPAN&gt;, &lt;SPAN&gt;SetTheFilePathHere&lt;/SPAN&gt; &amp;amp;&lt;SPAN&gt;"\"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;SetTheFilenameHere&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;".ipt"&lt;/SPAN&gt;)

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCtrlDef&lt;/SPAN&gt;
&lt;SPAN&gt;oCtrlDef&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;ControlDefinitions&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"AppFileSaveCopyAsCmd"&lt;/SPAN&gt;)
&lt;SPAN&gt;oCtrlDef&lt;/SPAN&gt;.&lt;SPAN&gt;ExecuteH&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 15:31:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11890934#M151254</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-12T15:31:17Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11892478#M151308</link>
      <description>&lt;P&gt;Hey Justin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm glad it worked.&lt;/P&gt;&lt;P&gt;Unfortunately I don't know how to do this yet, but my guess is that you need to program this kind of routine on the Vault level.&lt;/P&gt;&lt;P&gt;If you happen to solve your problem, I'd be interested to know how you did it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cheers&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 05:58:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11892478#M151308</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-13T05:58:24Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11901305#M151445</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I'll try to look into it.&lt;BR /&gt;Could you also explain how these lines of code work? Trying to grasp a bit better what I'm doing.&lt;BR /&gt;(explain it like I'm five)&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;PostPrivateEvent&lt;/SPAN&gt;(&lt;SPAN&gt;kFileNameEvent&lt;/SPAN&gt;, &lt;SPAN&gt;SetTheFilePathHere&lt;/SPAN&gt; &amp;amp;&lt;SPAN&gt;"\"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;SetTheFilenameHere&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;".ipt"&lt;/SPAN&gt;)

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCtrlDef&lt;/SPAN&gt;
&lt;SPAN&gt;oCtrlDef&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;ControlDefinitions&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"AppFileSaveCopyAsCmd"&lt;/SPAN&gt;)
&lt;SPAN&gt;oCtrlDef&lt;/SPAN&gt;.&lt;SPAN&gt;Execute&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I'll also put this post on Solved. Since my original question has thus been solved.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 11:24:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11901305#M151445</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-17T11:24:33Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11903402#M151498</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;in case you didn't know there is a programing/API-help inside inventor.&lt;/P&gt;&lt;P&gt;You can get to it by opening the dropdown menu next to the question mark in the upper right corner of inventor.&lt;/P&gt;&lt;P&gt;Then you select "help" -&amp;gt; "programing/API-help".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you search for "postprivateevent" you get more information about the method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Method that posts data onto Autodesk Inventor's internal clipboard. Certain commands that usually obtain information using a dialog, i.e. Open, Save, etc., look first to see if data is on the clipboard before displaying the dialog. If valid information is on the clipboard the command will use it instead of displaying the dialog and asking the user to specify the filename."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So basically you post all the required data for the save command to the internal clipboard and then call the save command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which also helped me a lot to better understand the internal mechanisms of the api is the macro/vba environment (hit Alt+F11 in inventor).&lt;/P&gt;&lt;P&gt;In case you don't know, here is how I do it.&lt;/P&gt;&lt;P&gt;Open the VBA environment with ALT+F11. Create a new modul and insert the following code:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Sub Dokument()
    Dim Dok
    Set Dok = ThisApplication
End Sub&lt;/LI-CODE&gt;&lt;P&gt;Then click left to "End" so a red dot appears and the line is also highlighted in red.&lt;/P&gt;&lt;P&gt;Right click on "ThisApplication" and add a monitoring (I'm not sure which word is the correct translation)&lt;/P&gt;&lt;P&gt;Ok the window poping up and keep the new bigger "monitoring" window open.&lt;/P&gt;&lt;P&gt;Then hit F5 to start.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now you can browse the internal tree of inventor in the monitoring window.&lt;/P&gt;&lt;P&gt;Hopefully you could understand what I was trying to explain &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@6F93DBFC7E4AAABB1178AEAE8B835CA8/emoticons/1f61b.png" alt=":face_with_tongue:" title=":face_with_tongue:" /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VBA-1.png" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1203516i246CEB06D7F3AAFF/image-size/small?v=v2&amp;amp;px=200" role="button" title="VBA-1.png" alt="VBA-1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VBA-2.png" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1203517i46680B768E353518/image-size/small?v=v2&amp;amp;px=200" role="button" title="VBA-2.png" alt="VBA-2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 05:16:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11903402#M151498</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-18T05:16:18Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11904819#M151549</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Thank you for walking me through everything.&lt;BR /&gt;I'll try to use your tips in the future!&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Apr 2023 15:26:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11904819#M151549</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-18T15:26:34Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906252#M151572</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you're welcome&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@7B4B80143EBEB4F250CEEC82342F6CA1/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt; Glad I could help.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 06:10:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906252#M151572</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-19T06:10:43Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906361#M151575</link>
      <description>Hi Richter&lt;BR /&gt;&lt;BR /&gt;Does the monitor show life what I'm doing in inventor?&lt;BR /&gt;Or just all the commands of inventor in general.</description>
      <pubDate>Wed, 19 Apr 2023 07:09:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906361#M151575</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-19T07:09:35Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906493#M151581</link>
      <description>Hey,&lt;BR /&gt;it's not live but a snapshot of Inventor when you hit F5. For example if you select anything in Inventor and start monitoring you can see the current selection.</description>
      <pubDate>Wed, 19 Apr 2023 08:17:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906493#M151581</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-19T08:17:59Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906512#M151582</link>
      <description>Aha that is very interesting indeed.&lt;BR /&gt;And it works all the time in inventor? Also when making drawings or assemblies and such.</description>
      <pubDate>Wed, 19 Apr 2023 08:21:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906512#M151582</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-19T08:21:45Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906587#M151586</link>
      <description>It does to my knowledge. At least I didn't come across any situation where it hasn't worked.</description>
      <pubDate>Wed, 19 Apr 2023 08:56:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906587#M151586</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-19T08:56:16Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906590#M151587</link>
      <description>Ok I suppose I just have to try it out..</description>
      <pubDate>Wed, 19 Apr 2023 08:57:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11906590#M151587</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-19T08:57:59Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11908907#M151646</link>
      <description>You can't break anything by trying and exploring the tree. It's quite overwhelming at the beginning but in my opinion it helps a lot to better understand what you are doing with ilogic and what also might be possible.</description>
      <pubDate>Thu, 20 Apr 2023 05:53:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11908907#M151646</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-20T05:53:58Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11909381#M151650</link>
      <description>Sounds good. I'll definitely use it.&lt;BR /&gt;Btw. Do you think it's possible to put this part in a assembly. and use the configurator there.&lt;BR /&gt;The tricky part is that I need the original part to be replaced with the renamed part.&lt;BR /&gt;&lt;BR /&gt;This is actually my goal to have a configurable assembly.&lt;BR /&gt;I thought it was a good place to start with the part.</description>
      <pubDate>Thu, 20 Apr 2023 09:33:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11909381#M151650</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-20T09:33:38Z</dc:date>
    </item>
    <item>
      <title>Betreff: Save part and use selected case and length as extension</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11909502#M151654</link>
      <description>I'd say it's possible although I don't have any idea how to do it at the moment.&lt;BR /&gt;Did you try a custom iPart, maybe it's a viable solution as well.</description>
      <pubDate>Thu, 20 Apr 2023 10:29:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/save-part-and-use-selected-case-and-length-as-extension/m-p/11909502#M151654</guid>
      <dc:creator>richterBKSAC</dc:creator>
      <dc:date>2023-04-20T10:29:16Z</dc:date>
    </item>
  </channel>
</rss>

