Change Color of Form

  • Thread starter Thread starter Downie
  • Start date Start date
D

Downie

I have a check box that is checked for half of my records.
Is there any code out there that I can use that will change the color
of my form when the checkbox is true/yes?

Private Sub Branch_MMS_Click()
If True Then
End Sub
 
SOME MORE INFO

Private Sub Form_branches()

If Me.Form_branches.Form.Branch_MMS = True Then
Me.Form_branches.Form.Section(0).BackColor = 255
Else
Me.Form_branches.Form.Section(0).BackColor = 16777215

End If


End Sub
 
SOME MORE INFO

Private Sub Form_branches()

If Me.Form_branches.Form.Branch_MMS = True Then
Me.Form_branches.Form.Section(0).BackColor = 255
Else
Me.Form_branches.Form.Section(0).BackColor = 16777215

End If


End Sub
 
Back
Top