test vba in listbox (UF)

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
 
M

mangesh_yadav

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
 
Top