A
Andrzej Kaczmarczyk
Hi,
I have a DataTable, and a DataColumn, with an expression set.
let say it is [Price] * [Quantity] expression
I'd like to change the value in some rows, without removing the computed .
column.Expression = null
removes all computed values (actually it just recompute the colum).
trying to do table.Rows[0][column] = "new value";
claims "The column is read only".
anything to do with this except manual copying to another column? or
computing by hand?
CUIN Kaczy
I have a DataTable, and a DataColumn, with an expression set.
let say it is [Price] * [Quantity] expression
I'd like to change the value in some rows, without removing the computed .
column.Expression = null
removes all computed values (actually it just recompute the colum).
trying to do table.Rows[0][column] = "new value";
claims "The column is read only".
anything to do with this except manual copying to another column? or
computing by hand?
CUIN Kaczy