B
Ben
I have two text boxes that I want to turn Grey when I click a check box. but
I only want to have that occur on the current record, so when I move to the
next record those text boxes are back to normal. Here is my code so far:
If [Risk] = True Then
[Risk_Probability].BackColor = 12632256
[Impact].BackColor = 12632256
Else
[Risk_Probability].BackColor = 16777215
[Impact].BackColor = 16777215
End If
Please help. Thanks
I only want to have that occur on the current record, so when I move to the
next record those text boxes are back to normal. Here is my code so far:
If [Risk] = True Then
[Risk_Probability].BackColor = 12632256
[Impact].BackColor = 12632256
Else
[Risk_Probability].BackColor = 16777215
[Impact].BackColor = 16777215
End If
Please help. Thanks