• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

archive inventor document via vba

  • Thread starter Thread starter Adahm
  • Start date Start date

Adahm

Guest
Bye to all,

Does anyone know if you can launch the "archive" command via vba by inventor to store files in the vault?
 
ciao
sono riuscito a fare "2 righe" con ilogic
salva/archivia/rilascia

dim cmdman as controldefinition
cmdman = thisapplication.commandmanager.controldefinitions.item("appfilesavecmd")
cmdman.execute
cmdman = thisapplication.commandmanager.controldefinitions.item("vaultcheckintop")
cmdman.execute
cmdman = thisapplication.commandmanager.controldefinitions.item("vaultchangestatetop")
cmdman.execute
 
Hello, matteo,
Great!
I have saved and archived commands, but not the change of state.
Do you know where I can find a list of commands that can be used with vaults and know if you can also do it via vba?
 
the command line to store via vba is the following if someone interests:
Code:
' archive the active document in the vault
thisapplication.commandmanager.controldefinitions.item("vaultcheckintop"). execute
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
ciao
Back
Top