Dear All,
Today we will see to Enable Matrix ArrowKeys through SAP SDK
Today we will see to Enable Matrix ArrowKeys through SAP SDK
Friend Sub EnableMatrixArrowKeys(ByVal oForm As SAPbouiCOM.Form, ByVal oMatrixUID As String)
Try
Dim oMatrix As SAPbouiCOM.Matrix = Nothing
oMatrix = oForm.Items.Item(oMatrixUID).Specific
Dim oMatrixcomSetting As SAPbouiCOM.CommonSetting = oMatrix.CommonSetting
oMatrixcomSetting.EnableArrowKey = True
Catch ex As Exception
End Try
End Sub