foreach (DataGridViewRow row in dataGridView1.Rows)
if (Convert.ToString(row.Cells[8].Value) == "หมดอายุ")
{
row.DefaultCellStyle.BackColor = Color.Red;
}
อันนี้ c sharp ตามที่ผมทำตัวอย่างครับ
Code (VB.NET)
For Each row As DataGridViewRow In dataGridView1.Rows
If Convert.ToString(row.Cells(8).Value) = "หมดอายุ" Then
row.DefaultCellStyle.BackColor = Color.Red
End If
Next