In vb, I can read/write everything but not in Delphi...
oForm := SBOapp.Forms.ActiveForm;
clsMatrix := SAPbouiCOM.Matrix(oForm.Items.Item('38').Specific);
clsMatrix.Columns.Item('U_freerm').Cells.Item('1').Specific.Value := '1'; I have tried .Value but the error message send that no the property ".Value" (it works in VB) Tried clsMatrix := oForm.Items.Item('38').Specific; (works in VB but not in delphi) Tried i := 1; clsMatrix.Columns.Item('U_freerm').Cells.Item('1').Specific := TObject(i); (delphi said that, .Specific is readonly)
Welcome for any hint or suggestion, thx.