Hi,
How can i implement this string
if (Convert.ToInt16(dataGridView1.Rows[p].Cells[7].Value) <= 7) so that i can have
if (convert.ToInt16(dataGridView1.Rows[p].Cells[7].Value) >= 3 but <=7) so it only counts values 4, 5 and 6
Thanks
Anthony
Loading
Subhendu DePosted Dec 14, 2010, 8:58 AM
{
// do something
}
else if ((convert.ToInt16(dataGridView1.Rows[p].Cells[7].Value)>=3)&&(convert.ToInt16(dataGridView1.Rows[p].Cells[7].Value)<=7))
{// do something
}
Anthony ClarkePosted Dec 14, 2010, 1:51 PM