من قائمة الحدث للداتا جريد فيو هاتختار Row Prepaint هاتدوس دبل كليك هاتحط الكود مع تعديل اسم العامود من your colum name لاسم العامود ائلى فيه تاريخ انتهاء الاشتراك
If DataGridView.Rows(e.RowIndex).Cells("your colum name").Value < Date.Now Then
DataGridView.Rows(e.RowIndex).DefaultCellStyle.BackColor = Color.Red
End If
If DataGridView.Rows(e.RowIndex).Cells("your colum name").Value > Date.Now Then
DataGridView.Rows(e.RowIndex).DefaultCellStyle.BackColor = Color.Green
End If
If DataGridView.Rows(e.RowIndex).Cells("your colum name").Value < Date.Now Then
DataGridView.Rows(e.RowIndex).DefaultCellStyle.BackColor = Color.Red
End If
If DataGridView.Rows(e.RowIndex).Cells("your colum name").Value > Date.Now Then
DataGridView.Rows(e.RowIndex).DefaultCellStyle.BackColor = Color.Green
End If

