Problems of list box property

  • Thread starter *¡¸ My-Ricky ¡¸*
  • Start date
¡

*¡¸ My-Ricky ¡¸*

Dear all,

I have 4 columns in a list box, in the listbox property I can only set one column width. How can I
set, say, column 1 column width=50, column 2=30, column 3=40 and column=100?

Also, I have set headers=true in listbox property. However, it only shows a blank row in in first
row. How can I add the title to the headers of the list?

Thank you in advance!



--
 
J

Jim Rech

You can set the column widths in the Properties window or at run time like
this:

ListBox1.ColumnWidths = "25;50;10"

I believe you can only show headers if you populate the listbox from the
worksheet via the RowSource property. And do not include the header row in
the LinkSource range.

So with headers in A1:D1 and data in A2:D10 use this in Linksource: A2:D10

--
Jim
| Dear all,
|
| I have 4 columns in a list box, in the listbox property I can only set one
column width. How can I
| set, say, column 1 column width=50, column 2=30, column 3=40 and
column=100?
|
| Also, I have set headers=true in listbox property. However, it only shows
a blank row in in first
| row. How can I add the title to the headers of the list?
|
| Thank you in advance!
|
|
|
| --
|
|
|
 
¡

*¡¸ My-Ricky ¡¸*

Thank you very much for your precious solutions and quick response. It works! ^_^
 

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

Top