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 help with rowsource

You don't use the rowsource

MyForm.Listbox1.List = MyArray

--
Regards,
Tom Ogilvy

"GMet" wrote in message
...
I have a form with a listbox. Before opening the form I create a public
array. I want to use the array as the rowsource for the listbox.

MyForm.Listbox1.RowSource = MyArray

does not work.

How do I do that?

TIA

Glen