<?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: How to Save copy as, straight into vault in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912637#M151703</link>
    <description>Thank you btw, another step forward!</description>
    <pubDate>Fri, 21 Apr 2023 13:17:37 GMT</pubDate>
    <dc:creator>J.VandeMerckt</dc:creator>
    <dc:date>2023-04-21T13:17:37Z</dc:date>
    <item>
      <title>How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11901320#M151446</link>
      <description>&lt;P&gt;Hi Forum&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this line of code which saves my configurable part with a custom filename.&lt;BR /&gt;It works as intended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem is I would like this file to be checked into the vault instead of saved in file explorer.&lt;/P&gt;&lt;P&gt;Can anyone help me change the code so the part is also checked into the vault.&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;Execute&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Thank you for helping.&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;</description>
      <pubDate>Mon, 17 Apr 2023 11:28:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11901320#M151446</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-17T11:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912613#M151700</link>
      <description>Dim oCtrlDef&lt;BR /&gt;oCtrlDef = ThisApplication.CommandManager.ControlDefinitions.Item("AppFileSaveCopyAsCmd")&lt;BR /&gt;oCtrlDef.Execute&lt;BR /&gt;&lt;BR /&gt;Dim oCtrlDefChin&lt;BR /&gt;oCtrlDefChin = ThisApplication.CommandManager.ControlDefinitions.Item("VaultCheckinTop")&lt;BR /&gt;oCtrlDefChin.Execute '.Execute2(True)</description>
      <pubDate>Fri, 21 Apr 2023 13:11:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912613#M151700</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2023-04-21T13:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912634#M151702</link>
      <description>Hey Arthur&lt;BR /&gt;&lt;BR /&gt;Now the checkin window opens. but only after I close my form.&lt;BR /&gt;is there a way to close the form after the Ilogic ran, and then press ok automatically on the checkin window?</description>
      <pubDate>Fri, 21 Apr 2023 13:17:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912634#M151702</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-21T13:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912637#M151703</link>
      <description>Thank you btw, another step forward!</description>
      <pubDate>Fri, 21 Apr 2023 13:17:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11912637#M151703</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-21T13:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11913262#M151714</link>
      <description>Then you need to use the Vault API.&lt;BR /&gt;What version of Vault are you using?&lt;BR /&gt;Professional&lt;BR /&gt;Basic</description>
      <pubDate>Fri, 21 Apr 2023 17:06:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11913262#M151714</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2023-04-21T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11917091#M151739</link>
      <description>We're using Vault basic 2020.&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Apr 2023 08:36:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11917091#M151739</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-24T08:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11921133#M151848</link>
      <description>Vault Basic is not api supported.</description>
      <pubDate>Tue, 25 Apr 2023 17:52:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11921133#M151848</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2023-04-25T17:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11922333#M151883</link>
      <description>But it would be possible with vault pro or maybe Windchill PLM? (if you're familiar with windchill system)</description>
      <pubDate>Wed, 26 Apr 2023 06:35:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11922333#M151883</guid>
      <dc:creator>J.VandeMerckt</dc:creator>
      <dc:date>2023-04-26T06:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save copy as, straight into vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11922844#M151899</link>
      <description>&lt;P&gt;With Vault Professional it is possible yes.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 10:58:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-save-copy-as-straight-into-vault/m-p/11922844#M151899</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2023-04-26T10:58:06Z</dc:date>
    </item>
  </channel>
</rss>

