Hello,

I would like to navigate in a dialog, which opened by vba, with the function SendKeys.

Public Sub showDim()
Dim contrBox As ControlDefinition
Set contrBox = ThisApplication.CommandManager.ControlDefinitions.Item("AppDimensionSettingsCtxCmd")
Call contrBox.Execute
SendKeys "{TAB 1}"
End Sub

Is there a function, where I activate the keyboard or event?

Thanks.