<?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 Can I get inventor to import an Exported Toolbars setting ? in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9818886#M117200</link>
    <description>&lt;P&gt;I am working on an program that will make it very easy to update many computer with my custom setting&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Toolsbar, Action rules , VBA code and standard seache .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I still need an good way to update my toolbar.&amp;nbsp; multi PC in the company. it there a way to by Ilogic or VBA to make it import an toolbar setting file ?&lt;/P&gt;</description>
    <pubDate>Thu, 22 Oct 2020 18:57:49 GMT</pubDate>
    <dc:creator>Darkforce_the_ilogic_guy</dc:creator>
    <dc:date>2020-10-22T18:57:49Z</dc:date>
    <item>
      <title>Can I get inventor to import an Exported Toolbars setting ?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9818886#M117200</link>
      <description>&lt;P&gt;I am working on an program that will make it very easy to update many computer with my custom setting&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Toolsbar, Action rules , VBA code and standard seache .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I still need an good way to update my toolbar.&amp;nbsp; multi PC in the company. it there a way to by Ilogic or VBA to make it import an toolbar setting file ?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 18:57:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9818886#M117200</guid>
      <dc:creator>Darkforce_the_ilogic_guy</dc:creator>
      <dc:date>2020-10-22T18:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can I get inventor to import an Exported Toolbars setting ?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9819131#M117203</link>
      <description>&lt;P&gt;I could not find a way using the api. But you could try to copy the InventorCustomization file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;inventorVersion&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"2020"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;destinationPath&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"c:\temp\"&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"InventorCustomization.xml"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;appdataPath&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Environment&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ExpandEnvironmentVariables&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"%APPDATA%"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;lastPartPath&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Format&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Autodesk\Inventor {0}"&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;inventorVersion&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fullSourcePath&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Path&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Combine&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;appdataPath&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;lastPartPath&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fullDestinationPath&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Path&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Combine&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;destinationPath&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt;)

&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Exists&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;fullSourcePath&lt;/SPAN&gt;)) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
    &lt;SPAN style="color: #808080;"&gt;' copy the customization file to a save location&lt;/SPAN&gt;
    &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Copy&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;fullSourcePath&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;fullDestinationPath&lt;/SPAN&gt;, &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
    &lt;SPAN style="color: #800000;"&gt;MsgBox&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"could Not find customization file"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;' do something else&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;' and return the customization file to its original location&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Copy&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;fullDestinationPath&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;fullSourcePath&lt;/SPAN&gt;, &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 21:19:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9819131#M117203</guid>
      <dc:creator>JelteDeJong</dc:creator>
      <dc:date>2020-10-22T21:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can I get inventor to import an Exported Toolbars setting ?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9819537#M117208</link>
      <description>&lt;P&gt;I know this ... but the problem is that inventor save the current setting over the file when you close it . so you will still have the same settings as before when you open inventor again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I might be able to do want you are saying&amp;nbsp; outside of inventor.&amp;nbsp; but I would like to do it all by one click in inventor if it is possible... So I can ask one user to try first ... to test that may update does not **** anything up ... and the aske the reste in a&amp;nbsp; day or two&amp;nbsp; to update ther inventor as well if no problem was fund&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 03:45:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/can-i-get-inventor-to-import-an-exported-toolbars-setting/m-p/9819537#M117208</guid>
      <dc:creator>Darkforce_the_ilogic_guy</dc:creator>
      <dc:date>2020-10-23T03:45:10Z</dc:date>
    </item>
  </channel>
</rss>

