You can change the font color (ForeColor) of all of the items, but not individual items in the list.
For example, you can do this on an on click event of a listbox:
Me.myListBox.ForeColor = vbRed
But you can't do something like:
Me.MyListBox.Selected.ForeColor since font color is an attribute of the Control, and not of the selected item in the list.
Did that help any?
mmcdonal
|