columns Widths for ComboBox

  • Thread starter Thread starter jlclyde
  • Start date Start date
J

jlclyde

I am trying to set each column width seperately for my ComboBox on my
user form. I am not sure hwo to do this. This sets the first column
width. I need to do the other 4 columsn as well.

AvailableItems.ColumnWidths = "0 in;.9 in"

Thanks,
Jay
 
AvailableItems.ColumnWidths = "0;9;12;24"

But the measurement will be in points--not inches.

(I usually experiment to get the widths correct for my data.)
 
AvailableItems.ColumnWidths = "0;9;12;24"

But the measurement will be in points--not inches.

(I usually experiment to get the widths correct for my data.)

Dave,
This has been bugging me for a couple of days. I have tried " X;Y",
"X;Y" and many other variations. You are the first person to spell it
out clearly.

Thanks,
Jay
 
Back
Top