Thesecond solution worked fine for my fields. My Checkbox is called CheckBox13, and my textboxes are TextBox1 and so forth.
The code looks like this:
Code:
Private Sub CheckBox13_Click()
 Const LightYellow = 10092543
    Const White = 16777215
    If CheckBox13 Then
        TextBox1.BackColor = LightYellow
        TextBox11.BackColor = LightYellow
        TextBox12.BackColor = LightYellow
        TextBox13.BackColor
...