iProperties - Opening Using VBA

iProperties - Opening Using VBA

isocam
Collaborator Collaborator
552 Views
1 Reply
Message 1 of 2

iProperties - Opening Using VBA

isocam
Collaborator
Collaborator

Can anybody help?

 

I am opening, using VBA, the iProperties "Pop Up" box, using the following code....

 

ThisApplication.CommandManager.ControlDefinitions.Item("AppiPropertiesWrapperCmd").Execute

 

Can anybody tell me if it is possible to open the iProperties "Pop Up" box at a specific Tab, for example, "Physical" or "Status" etc?

 

Many thanks in advance!!!!

 

IsoCAM

0 Likes
553 Views
1 Reply
Reply (1)
Message 2 of 2

xiaodong_liang
Autodesk Support
Autodesk Support

Hi,

 

I do not think this is a question with Inventor API. What I can think of is to use SendKeys. e.g.

 

Sub test1()

Dim oCol As ControlDefinition
Set oCol = ThisApplication.CommandManager.ControlDefinitions.Item("AppiPropertiesWrapperCmd")

SendKeys "^{TAB}", True

oCol.Execute
End Sub

 

But, it does not work.. I'd suggest consulting with MSDN if there is any solution. 

 

0 Likes