rt63,
Thanks, this partially worked. When you initially open the window and the column that the detail band expression is based on has the value I want, the rows are the appropriate color. However, when I select a different value for that column in the ddlb, I expect the whole row to change to the color I set for the false condition in the expression on the detail band. Instead, only the column that I changed the value for turns to the appropriate color and the other columns stay the same until I tab to it then it changes color. For example:
//detail band expression
If(col1=1,rgb(255,0,0),rgb(0,255,0)) //True=red, False=green
If I change the value to 1 in col1, then col1 turns to red and the other columns stay green until I tab to them and then it turns to red.
I want the whole row to change colors as soon as I change the value in col1. How do I accomplish this?
I'm assuming I would have to have the detail band expression in the itemchanged event.If so, what is the correct syntax in the event to access the detail band of the dw? I'm using PB6.5
kaul