Welcome Notes

Welcome Viewers

13 April 2017

Enable Matrix ArrowKeys SAP B1

Dear All,
   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