I am trying to change background color of body when a control in it matches a certain value.
What I obtain with the following statement ....
Private Sub Report_Load()
Select Case [Stato]
Case "C2"
Me.Body.BackColor = vbYellow
Case Else
Me.Body.BackColor = vbWhite
End Select
End Sub
...is instead alternate colors of records ?!!?? What's wrong ??