View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default listbox1.additem syntax for multiple columns

ListBox1.Additem "Text"
Listbox1.List(Listbox1.Count-1,1) = "Text2"

--
Regards,
Tom Ogilvy

"Russ Robelen" wrote in message
...
i am trying to load a two column listbox with the additem
method. The syntax for a single column listbox is:
listbox1.additem ("text")
For the life of me I cannot determine what the syntax is
for multiple columns. Can anyone help me.