Link to home
Start Free TrialLog in
Avatar of GMorgan
GMorgan

asked on

Mutli Column Combo Boxes

Does anyone know how to create a multicolumn combobox.  MSDN tells you to change the column property. Yet the standard combobox in the toolbox doen't have a cloumn property.
Avatar of S2
S2

A listbox has columns a combobox doesn't, you can create your own combo box control with a button that has the combobox drop down arrow a textbox and a listbox with multiple columns, write events for the conrtol and there you go a combobox with multiple columns.
You can try using the combobox found in the MS Forms 2.0 library, but that one has restricted use (any machine where it's used must have an MS Office license.)
May be I misunderstood Q
Never mind if not what U ment

but U can Sent tab chr to have combo items like

combo1.additem str1 & chr(vbkeytab) & str2 & chr(vbkeytab) & str3

Item1      Price1        kjgh kjh jk
Item2      Price2        bla bla
Item3      Price3        hjkghjkgjkg

by some API U can set tab width
Avatar of GMorgan

ASKER

Thanks for the help with the list box but I'm still a little unsure of how to enter the data into each column...I don't want to use tabs though...cheers
ASKER CERTIFIED SOLUTION
Avatar of escheider
escheider

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Just realized you wanted a combo box.  What type of data are you trying to display to the user?
Avatar of GMorgan

ASKER

I'm trying to display a list of mp3's with their tag information.  
Avatar of GMorgan

ASKER

I'm trying to display a list of mp3's with their tag information.  
Id use a listview..be perfect for what you're trying to do.