i would like to ask how to change the row color in datagrid.
this is my codes.
that if my stock is < 10 the row with < 10 stock will turn in RED color.
If Val(medstocks.Text) < 10 Then
MessageBox.Show("Medicine is running out of Stocks!", "WARNING", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
..Thanks!