3 Topics

Member Avatar for
Member Avatar for BDS_AT

All, I have a DataGridView bound to an XML file, then I add an unbound column of checkboxes to the DGV. [CODE] private void btnReconcile_Click(object sender, EventArgs e) { DataSet ds = new DataSet(); ds.ReadXml(txtPath.Text); DataSet modds = new DataSet(); DataTable dt = new DataTable(); dt = ds.Tables[0].Clone(); foreach (DataTable …

Member Avatar for BDS_AT
0
2K
Member Avatar for phoenix_dwarf

Hi, i'm trying to add a checkbox to a datagrid but don't seem to get anywhere. I got to add a new column but that's where it stops. I'm reading data out of my database and then deleting the first column of that dataset's table as it is not needed, …

Member Avatar for phoenix_dwarf
0
396
Member Avatar for khemalatha

Hi Am using Visual studio 2008, C# application . In my data grid view i have Checkbox column, I put One header check box for datagrid view. datagridviewCheck box is displayed for all row. i wil create column header check box separately. if am selecting the Header check box means …

Member Avatar for sknake
0
2K

The End.