Check Box Question

B

Bob V

Can my form have this code something like this!
If cbRemark = -1 then tbRemark colour256

Trouble is that Conditional formatting does not have the colour I want
Thanks for any help..........Bob
 
B

Bob V

Thanks RuralGuy, Brilliant................Regards Bob
Private Sub Form_Current()

If Me.ckbRemindTogC = True Then
Me.tbRemindC.BackColor = 12189695
Else
Me.tbRemindC.BackColor = -2147483643
End If

End Sub
 
Top