JohnnyBQue
New Member
- Joined
- Apr 25, 2016
- Messages
- 8
When I click the button if its WHITE it turns to RED if its RED it turns to WHITE the code operates correctly but when the color suppose to change back to WHITE it changes to a very very light Red, but there are times when it changes completely white.
Is this just an Excel thing ??? I really need the cell to turn completely white every time.
{Private Sub Card4_Click()
If Me.Card4.BackColor = &HFFFFFF Then
Me.Card4.BackColor = &HFF
ElseIf Me.Card4.BackColor = &HFF Then
Me.Card4.BackColor = &HFFFFFF
End If
End Sub}
Is this just an Excel thing ??? I really need the cell to turn completely white every time.
{Private Sub Card4_Click()
If Me.Card4.BackColor = &HFFFFFF Then
Me.Card4.BackColor = &HFF
ElseIf Me.Card4.BackColor = &HFF Then
Me.Card4.BackColor = &HFFFFFF
End If
End Sub}