T
Tim Cowan
Hi,
I was wondering if there is a quicker way to do this? I have a select all
check box for data in a grid and when checked I want the checkboxes in the
grid to be checked.
I am currently using:
foreach(DataRowView DRV in dvData)
{
DRV["BIT_print_label"] = this.chkSelectAll.Checked;
}
It is very slow for a large amount of data, approx 1888 records. Can anyone
suggest a faster way. I am using VS2005.
Tim
I was wondering if there is a quicker way to do this? I have a select all
check box for data in a grid and when checked I want the checkboxes in the
grid to be checked.
I am currently using:
foreach(DataRowView DRV in dvData)
{
DRV["BIT_print_label"] = this.chkSelectAll.Checked;
}
It is very slow for a large amount of data, approx 1888 records. Can anyone
suggest a faster way. I am using VS2005.
Tim