set the Columns property of the list box to something different than 1, and use vbTab to separate the columns when you add an item, like
list1.add "first" & vbtab & "second"
if you neeed more control on the layout, I suggest you switching from the ListBox to the ListView in report mode.
Marco
|