First of all, you should give your controls a meaningful name if you intend
to reference them anywhere else. A name like "Combo478" doesn't provide much
self documentation.
Second, I mentioned your value should be stored in a field in your table.
You seemed to have ignored this suggestion. Is Combo478 bound to any field?
You might be able to use code like this in the On Format event of your
report section:
Select Case Me.txtYourField
Case "R"
Me!ProjectStatus.BackColor = vbRed
Me!txtYourField.BackColor = vbRed
Case "Y"
Me!ProjectStatus.BackColor = vbYellow
Me!txtYourField.BackColor = vbYellow
Case "G"
Me!ProjectStatus.BackColor = vbGreen
Me!txtYourField.BackColor = vbGreen
End Select
HELP!!
I have a combobox on the form with an Event Procedure as follows:
[quoted text clipped - 27 lines]