Skip to Content
0
Former Member
May 10, 2010 at 05:41 PM

[SAP B1] Read from Matrix

1083 Views

I'm trying to read from a Matrix.

The code that I have until now is:

SAPbouiCOM.Matrix matrix = (SAPbouiCOM.Matrix SBO_Application.Forms.ActiveForm.Items.Item("38").Specific;              
SAPbouiCOM.Column col = matrix.Columns.Item("1") ;
SAPbouiCOM.Cells cells = col.Cells;
String cell = cells.Item(2).Specific.ToString();
String f = cell.ToString();

None of the Strings (cell and f) give me the value of the cell...

I only needed a solution , don't really need the most performanced

Any Idea?

Edited by: mribeiro on May 10, 2010 7:41 PM