Listbox alignment

Hi,

Is there a way to change column allignent of the whole listbox control at once, without cycling every single cell ?

Thanks

No. But you can use ColumnAlignment:

For i As Integer = 0 To lbx.ColumnCount - 1 lbx.ColumnAlignment(i) = Listbox.AlignRight Next