Prev: XML as an INI File
Next: converting ansi to utf8 format - is there anything wrong with it ? urgently requires help
From: jbehrne on 16 Mar 2006 14:49 Hi all, I am using a datagridview in .Net 2005 to display data from a stored procedure using a System.Data.SQLClient connection. After the stored procedure dumps the data into a dataset and the datagridview is displayed I need to conditionally format the backcolors of the rows (this will be controlled by the value of a cell that contains a checkbox from the SQL table). How do I change the row backcolor if the cell's check box is checked on any given row (and there are many rows) - the row backcolor needs to be changed to red, otherwise the row backcolor should be displayed as white. I have tried several different pieces of code without any luck. Any help would be appreciated. Thanks!
From: Chris on 16 Mar 2006 16:44
jbehrne wrote: > Hi all, > > I am using a datagridview in .Net 2005 to display data from a stored > procedure using a System.Data.SQLClient connection. After the stored > procedure dumps the data into a dataset and the datagridview is displayed I > need to conditionally format the backcolors of the rows (this will be > controlled by the value of a cell that contains a checkbox from the SQL > table). How do I change the row backcolor if the cell's check box is checked > on any given row (and there are many rows) - the row backcolor needs to be > changed to red, otherwise the row backcolor should be displayed as white. > > I have tried several different pieces of code without any luck. Any help > would be appreciated. Thanks! http://msdn2.microsoft.com/en-us/library/z1cc356h.aspx This should give you the information you are looking for. Chris |