data cards

data cards

Anonymous
Not applicable
688 Views
3 Replies
Message 1 of 4

data cards

Anonymous
Not applicable

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

0 Likes
Accepted solutions (1)
689 Views
3 Replies
Replies (3)
Message 2 of 4

jdkriek
Advisor
Advisor

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.


0 Likes
Message 3 of 4

Anonymous
Not applicable

hi jd

 

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

 

 

0 Likes
Message 4 of 4

jdkriek
Advisor
Advisor
Accepted solution

VaultDataCardTop seems to work.

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


0 Likes