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: 

iProperties - Opening Using VBA

1 REPLY 1
Reply
Message 1 of 2
isocam
365 Views, 1 Reply

iProperties - Opening Using VBA

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

1 REPLY 1
Message 2 of 2
xiaodong_liang
in reply to: isocam

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. 

 

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

Post to forums  

Autodesk Design & Make Report