Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
DRoam
in reply to: frederic.vandenplas

I had some trouble with the snippets above, and I was also trying to get it to work in iLogic rather than VBA. After experimenting, the following methods seem to work well for VBA and iLogic respectively:

 

VBA:

Sub OpenPhysicalProperties()
    ThisApplication.CommandManager.ControlDefinitions.Item("AppiPropertiesWrapperCmd").Execute2 (False)
    SendKeys ("{RIGHT 6}")
End Sub

 

iLogic

Sub OpenPhysicalProperties()
    ThisApplication.CommandManager.ControlDefinitions.Item("AppiPropertiesWrapperCmd").Execute2(False)
    System.Windows.Forms.SendKeys.SendWait("{RIGHT 6}")
End Sub