| Author: Deepika Haridas 21 Nov 2008 | Member Level: Diamond | Rating:  Points: 1 |
Try these
Remove bool
or specifying column number like 0 or 1...
Regards, Deepika
Thanks & Regards, Deepika Editor
If U want to shine like a SUN..First U have to burn like the SUN!! Need a Guide? Join my mentor program..
|
| Author: Anil Kumar Pandey 21 Nov 2008 | Member Level: Diamond | Rating:  Points: 4 |
hi,
u can use like this
if (dtgUsers.Rows[i].Cells[1].Value.ToString() == myItem.SubItems[1].Text.Trim())
foreach (DataGridViewRow row in this.GrdBouquet.Rows) {
if (row.Cells["checkbox1"].Value == true)
{ //action; } }
Regards Anil Pandey
Thanks & Regards Anil Kumar Pandey
|
| Author: Legend 21 Nov 2008 | Member Level: Silver | Rating:  Points: 3 |
hi,
u can use like this
if (dtgUsers.Rows[i].Cells[1].Value.ToString() == myItem.SubItems[1].Text.Trim())
foreach (DataGridViewRow row in this.GrdBouquet.Rows) {
if (row.Cells["checkbox1"].Value == true)
{ //action; } }
|