Message 1 of 3
Check-in Vault from Inventor without pop-up window
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I am preparing automation for creating models and drawings. I have already written all the logic, and everything works correctly. The only issue is that during the automatic entry of drawings or models, I get a pop-up window where I have to press OK to enter it. Is there a way to skip this window automatical?
Part of code to check in:
Dim countReferenced As Integer = oDoc.AllReferencedDocuments.Count For i As Integer = 1 To countReferenced + 2 ThisApplication.ActiveDocument.Save2() Dim oControlDef As Inventor.ControlDefinition oControlDef = ThisApplication.CommandManager.ControlDefinitions.Item("VaultCheckinTop") oControlDef.Execute() ThisApplication.ActiveDocument.Close Next
ThisApplication.SilentOperation = True
Isnt working on Vault addin, its only working for inventors pop up.
Can you help me? 😄