Skip to Content
0
Former Member
May 15, 2007 at 06:11 PM

Read and obtain contents cells in only one row in Matrix

30 Views

Hi,

They see the code below:

IU = oMatrix.Columns.Item("DSCardCode").Cells.Count - 1;

for (I = 1; I <= IU; I++ )

{

object val = oMatrix.Columns.Item("DSCardCode").Cells.Item(I).Specific;

oEditText1 = (SAPbouiCOM.EditText)val;

string valor = oEditText1.String;

}

this way I read all rows in only one column and obtained the values of each line of this column,

however I want to make is read the values of all columns in only one row and obtained content cells this row, somebody knows how to make......

thanks.