G Guest Mar 7, 2007 #1 Is there a way to change the background color of a checkbox label when it is checked and change it back to white if it is un-checked?
Is there a way to change the background color of a checkbox label when it is checked and change it back to white if it is un-checked?
K Keith74 Mar 7, 2007 #2 Hi Private Sub CheckBox1_Change() If CheckBox1.Value = True Then CheckBox1.BackColor = RGB(0, 255, 0) Else CheckBox1.BackColor = RGB(255, 255, 255) End If End Sub hth
Hi Private Sub CheckBox1_Change() If CheckBox1.Value = True Then CheckBox1.BackColor = RGB(0, 255, 0) Else CheckBox1.BackColor = RGB(255, 255, 255) End If End Sub hth