I copied the method SetColor incorrectly!
The actual method is:
Private Sub SetColor(cbox As ComboBox)
If cbox.Value = "Please Select" Then
cbox.BackColor = &H80FFFF
Else
cbox.BackColor = &HFFFFFF
End If
End Sub
It just doesn't like the line:
SetColor(MyComboBox1) in the Sub MyComboBox1_Change(). Any clues,
anyone?