You can use the combo box's On Get Focus and On Lost Focus events to make the color change when you click on it. For instance:
Code:
Private Sub cmbExample_GotFocus()
Me.cmbExample.BackColor = vbGreen
End Sub
Private Sub cmbExample_LostFocus()
Me.cmbExample.BackColor = vbWhite
End Sub