Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All,
I'm experimenting with the new iLogic Vault snippets in Inventor 2024.
Can someone suggest how I can alter the code of the 'Check In Active Document' snippet to automatically select OK when the check in dialog box appears? I don't want any manual intervention from the user during this process.
Try ThisDoc.Save Dim oControlDef As Inventor.ControlDefinition oControlDef = ThisApplication.CommandManager.ControlDefinitions.Item("VaultCheckinTop") oControlDef.Execute2(True) Catch ex As Exception Logger.Error("Undo Check-In failed; likely, the file wasn't checked out.") End Try
Solved! Go to Solution.