Hi,
You don't add a CheckBox control to a DataTable. You add it either to a DataGrid or DataGridView depending on what framework version you use.
If you use 2.0, then you can add a DataGridViewCheckBoxColumn to your DataGridView, and bind it to a column of a type containing boolean data.
Hope this helps.
Luc