combobox question

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

I have a combo box with 12 columns on my form. However,
when I click on the drop down arrow, I can only see 10 of
the columns. How can I see all of the columns? I have
tried changing column widths but that hasn't helped.

Thanks for the help......
 
columnwidths in conjunction with the listwidth property of the combobox
would be the properties to use.

for example, I did 13 columns
ColumnWidths:
20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20
pt
ListWidth:
280pt
columncount:
13
Rowsource:
Sheet1:A2:M25
columnheads:
True

for the listwidth
add up all your columnwidths and add some pts for the vertical scroll bar.
(I added 20 pts).
 
Tom.........thanks for the help......JT
-----Original Message-----
columnwidths in conjunction with the listwidth property of the combobox
would be the properties to use.

for example, I did 13 columns
ColumnWidths:
20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20 pt;20
pt
ListWidth:
280pt
columncount:
13
Rowsource:
Sheet1:A2:M25
columnheads:
True

for the listwidth
add up all your columnwidths and add some pts for the vertical scroll bar.
(I added 20 pts).

--
Regards,
Tom Ogilvy




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top