List boxes

D

Denise

How do I add data to a listbox in two columns

with just one column it'd be
listbox1.additem "Joe Bloggs"

but I want the joe and the bloggs to be in two adjacent
colums.

TIA
 
B

Bob Phillips

Listbox1.additem "Joe "
Listbox1.List(Listbox1.Listindex-1,1)="Bloggs"

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top