FNC DataGrid - how to get Value from a data-bound checkbox (boolean) column

Hello,

I'm using an Adapter to bind grid to dataset with a Boolean field, but when i try to get the cell value using Grid.Cells[x,y] or Grid.CellData[x,y].Value, the value always is empty. Even when Value has a true value, the Value.AsBoolean returns false.

Is there a way to get the value from grid cell without using directly the dataset.

Hi,

You can use the Grid.Booleans[x, y] property for that.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.