Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unable to change the ForeColor of a combo box current selected item

Status
Not open for further replies.

WomanPro

Programmer
Nov 1, 2012
180
GR
Hello everyone. I have a combo box in my form with 7 string items. The days of the week.
I don't want the user to be able to add items that's why i have set DropDownStyle to DropDownList. The ForeColor of the items in the combo box is SaddleBrown.
When the form loads the first item is always selected but the fore color instead of SaddleBrown is Black. And everytime I select a day(item) of the combobox the fore color of the current sected item is always black. Is there a way to fix that to the SaddleBrown and how? Any help will be much appreciated. Thank you so much in advanced.

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
ComboBox1.SelectedIndex = 0
End Sub

I tried with no effect
Protected Sub Combobox1_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles ComboBox1.DrawItem
e.Graphics.DrawString(ComboBox1.Text, ComboBox1.Font, New SolidBrush(Color.SaddleBrown), e.Bounds)
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top