test vba in listbox (UF)

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

How in listbox (UF) setting column's width (i've 6 column
and i'd like each one in different width) and format
column ??

Regards
Mark
 
just set the columnwidths property as shown

With Me.lbItems
.ColumnCount = 3
.ColumnWidths = "100, 50, 200"

' add items

End With

or you can also do the same in the properties

- Manges
 

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