View Single Post
 
Old 07-17-2009, 11:32 AM
DrewB DrewB is offline Windows XP Office 2003
Novice
 
Join Date: Feb 2009
Posts: 6
DrewB is on a distinguished road
Default Bold list items in a combo box

Hi,
I have a combo box that contains a decent number of items in the list and I would like to bold certain items, for example my list looks like this:

Colorado
Denver
Pueblo
California
Los Angeles
San Diego
Michigan
Detroit
Dearborn

But i would like it to look like this


Colorado
Denver
Pueblo
California
Los Angeles
San Diego
Michigan
Detroit
Dearborn

I create the list in the following maner:


Code:
 
Dim vComboList1
 
vComboList1 = Array("Colorado","Denver","Pueblo","California","Los Angeles","San Diego","Michigan","Detriot","Dearborn")
 
Me.ComboBox1.AddItem vListItem
is there any way to do this??
Reply With Quote