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.