I have database table
Inbox(id,accountid,emailfrom,emailsubject,emailbody, recieveddate,attachment, read(bool)
i have added it to the form through table adapter and show it in a grid view. working fine. but onething that i want to do is when the read column value is false i want to change the color of the gridrow or highlight that row?
kindly guid me how i do it?
Does this link How do I specially color only the current cell of a readonly datagrid answer your question? I discusses how to create a custom column style overriding its paint method to change the background color.