J josephyeo Registered User. Local time Today, 12:55 Joined Dec 10, 2000 Messages 13 Dec 13, 2000 #1 Can anyone tell me how to create a combo box with its drop down in a different color. I have a column of combo boxes and when one box is opened, it is hard to tell where the selections start or end.
Can anyone tell me how to create a combo box with its drop down in a different color. I have a column of combo boxes and when one box is opened, it is hard to tell where the selections start or end.
A Atomic Shrimp Humanoid lifeform Local time Today, 12:55 Joined Jun 16, 2000 Messages 1,954 Dec 13, 2000 #2 You could change the colour of the combo while it has the focus by using the Got and Lost Focus events like this: Private Sub MyCombo_GotFocus() Me.MyCombo.ForeColor = 255 End Sub Private Sub MyCombo_LostFocus() Me.MyCombo.ForeColor = 0 End Sub HTH Mike
You could change the colour of the combo while it has the focus by using the Got and Lost Focus events like this: Private Sub MyCombo_GotFocus() Me.MyCombo.ForeColor = 255 End Sub Private Sub MyCombo_LostFocus() Me.MyCombo.ForeColor = 0 End Sub HTH Mike