Hello,
Well first in the designer dialog of the grid, set the style to that column as Check Box.
than in the file just do following for changing its state
this.ultraGrid1.rows[rowNum].cells["colName"].value = false / true;
(well this code is when u know ur row num)
iMi