vote up 1 vote down star

This is for a winform vb.net 2008 app. I'm bringing data back from a database and based on some static conditions... i want to change the color of the background and the text. There is no rowdatabound event in winform...

hope someone can provide some guidance thanks shannon

flag

0% accept rate
1  
I can think of at least 20 different ways to bring data back from a DB so it could be helpful if you were a little more specific. – Darin Dimitrov Oct 28 at 19:51
sorry about that... i'm not having trouble bringing data back from the db, it's formatting the style of the cell that the data is going into. – jvcoach23 Oct 28 at 20:27

2 Answers

vote up 0 vote down

Don't forget to set the selectoinBackColor too... otherwise if your red row changes, but you have it highlighted, it will look just like all the rest anyway.

link|flag
vote up 0 vote down

got it working... in the RowPostPaint event.. if i put in

if (my criteria here) Me.dgTableInfo.Rows(e.RowIndex).Cells("ColumnName").Style.BackColor = Color.Red end if

Thanks shannon

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.