hi
I have a checkbox, and a textbox
when check the checkbox then the backcolor in the textbox must be red
I try this with no succes, checkbox name is Ma1 and textbox name is Ma1tekst
Private Sub Ma1_AfterUpdate()
If Me.Ma1 = 1 Then
Ma1tekst.ForeColor = red
End If
End Sub