<?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: Inventor and Vault Prompts in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5985116#M60863</link>
    <description>&lt;P&gt;That isn't a bad thought, but it appears to only work for Inventor prompts, not Vault prompts...&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jan 2016 18:30:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-01-12T18:30:24Z</dc:date>
    <item>
      <title>Inventor and Vault Prompts</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5984776#M60858</link>
      <description>&lt;P&gt;Is it possible to turn off all inventor and vault prompts through iLogic? We are placing text on drawings (through iLogic) and then sending the documents to the printer, but prompts keep popping up asking "Do you want to check the file out?". These are getting annoying. I know you can go into the settings and choose to have them not prompt the user, but I don't want to manually change the settings on a whole bunch of computers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or can I programatically answer the prompts that pop up instead of the user having to click on the prompts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Allen&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 15:46:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5984776#M60858</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-12T15:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor and Vault Prompts</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5984887#M60861</link>
      <description>&lt;P&gt;Haven't test to see if it stops vault prompts but setting the application silent should work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ThisApplication.SilentOperation = True&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be sure to reset to False before the rule ends.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 16:38:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5984887#M60861</guid>
      <dc:creator>rjay75</dc:creator>
      <dc:date>2016-01-12T16:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor and Vault Prompts</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5985116#M60863</link>
      <description>&lt;P&gt;That isn't a bad thought, but it appears to only work for Inventor prompts, not Vault prompts...&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 18:30:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/5985116#M60863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-12T18:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor and Vault Prompts</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/6204328#M62271</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a work around that i am using that works a dream.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Catch turns VaultAddin Back on if it fails.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&lt;U&gt;&lt;STRONG&gt;iLogic Version&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Try&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ThisApplication.SilentOperation = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dim oAddins As&lt;/STRONG&gt; &lt;STRONG&gt;ApplicationAddIns&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;oAddins = ThisApplication.ApplicationAddIns&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dim oVaultAddin As&lt;/STRONG&gt; &lt;STRONG&gt;ApplicationAddIn&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;oVaultAddin = &lt;/STRONG&gt;&lt;STRONG&gt;ThisApplication&lt;/STRONG&gt;&lt;STRONG&gt;.ApplicationAddIns.ItemById("{48B682BC-42E6-4953-84C5-3D253B52E77B}")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;oVaultAddin.Deactivate()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'"Run your code"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;oVaultAddin.Activate()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ThisApplication.SilentOperation = False&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Catch&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oVaultAddin As ApplicationAddIn&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oVaultAddin = &lt;/STRONG&gt;&lt;STRONG&gt;ThisApplication&lt;/STRONG&gt;&lt;STRONG&gt;.ApplicationAddIns.ItemById("{3AD251E3-02DD-4B8C-8882-86C97C80E00C}")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If oVaultAddin.Activated = False Then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oVaultAddin.Activate()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ThisApplication.SilentOperation = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End try&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2016 11:59:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/6204328#M62271</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-08T11:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor and Vault Prompts</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/6204420#M62273</link>
      <description>&lt;P&gt;Thanks for the input edd_3. Since originally posting this question, I have found the commands to activate and deactivate the Vault add-in as you have outlined. I ran into problems with Inventor crashing though. If any other document was checked out, Inventor would crash instantly when I deactivated the add-in. We ended up adjusting our Vault prompts manually so that we weren't hampered by a bunch of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's what we saw as the best solution to our situation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, thanks for the response!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2016 13:00:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-and-vault-prompts/m-p/6204420#M62273</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-08T13:00:50Z</dc:date>
    </item>
  </channel>
</rss>

