- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I use this to check out files
invApp.CommandManager.ControlDefinitions.Item("VaultCheckoutTop")
How do i define options with this?
Its the closest i can find that may have something to do with it.
invApp.CommandManager.ControlDefinitions.Item("VaultOption")
I need to set the "Include children" and so on.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
You need to use the Vault API for that kind of things. Only with the Inventor api this will not work.
Regards,
Arthur Knoors
Autodesk Affiliations:
Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:Drawing List!|Toggle Drawing Sheet!|Workplane Resize!|Drawing View Locker!|Multi Sheet to Mono Sheet!|Drawing Weld Symbols!|Drawing View Label Align!|Open From Balloon!|Model State Lock!
Posts and Ideas:Dimension Component!|Partlist Export!|Derive I-properties!|Vault Prompts Via API!|Vault Handbook/Manual!|Drawing Toggle Sheets!|Vault Defer Update!
! For administrative reasons, please mark a "Solution as solved" when the issue is solved !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Find this file here
C:\Users\<USERNAME>\AppData\Roaming\Autodesk\Inventor 2023 Vault Addin\ApplicationPreferences.xml
If Inventor is closed - you can simply modify this file and the changed settings will take effect the next time you open Inventor.
If Inventor is open - read the ID and Name from the file and you can use this iLogic snippet to set the values.
Imports Autodesk.DataManagement.Client.Framework.Forms
AddReference "Autodesk.DataManagement.Client.Framework.Forms.dll"
'Library.ApplicationPreferences.Load() 'Load modified settings if file edited outside of Inventor process.
Library.ApplicationPreferences.Set("CheckInDialogOptions", "IncludeChildren", True) 'Directly sets the setting right from the iLogic Rule.
See this post to edit vault prompts. Those are handled differently.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report