Datagrid in Vb .net and changing the font color
Simple request :
I have a standard Data Grid on my form that it's source is a sql select statement. Everything works fine in code, so no problems there.
Lets say I have this data set :
Part Number Qty Ship Date
65000 500 2/2/2002
65008 300 4/4/2004
65010 100 2/2/2002
What I want to do is change the font color to lets say green whenever the year of the ship date is 2004. So the font color would be black on the first and third rows and green on the second. Any suggestions?
Thanks in advance!
Justin Duke