Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

data cards

3 REPLIES 3
SOLVED
Reply
Message 1 of 4
akosi
527 Views, 3 Replies

data cards

is there a way to open the data cards window using vba?

3 REPLIES 3
Message 2 of 4
jdkriek
in reply to: akosi

I don't have Vault installed at home right now, but try something like this:

 

Public Sub VaultDataCard()
    Dim oCommandMgr As CommandManager
    Set oCommandMgr = ThisApplication.CommandManager
    Dim oControlDef As ControlDefinition
    Set oControlDef = oCommandMgr.ControlDefinitions.Item("VaultDataCard")
    Call oControlDef.Execute
End Sub
Jonathan D. Kriek
MFG Solutions Engineer
KETIV Technologies, Inc.


Message 3 of 4
akosi
in reply to: jdkriek

hi jd

 

ive tried the code and it doesnt give any error but it doesnt do anything too

 

 

Message 4 of 4
jdkriek
in reply to: akosi

VaultDataCardTop seems to work.

Jonathan D. Kriek
MFG Solutions Engineer
KETIV Technologies, Inc.


Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report