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 Writing data table to user form

how about some details on the array. What are its dimensions? What does
it contain?

One solution might be a multicolumn Listbox (if it has two dimensions.).

Userform1.Listbox1.List = MyArray

as an example. You would need to set the column count as well.

--
Regards,
Tom Ogilvy


"Mitch" wrote in message
...
My application creates an array (in memory) that I need to show

"on-screen"
(without editing capabilities). Could someone please tell me how to get

the
array from memory to a temporarily viewable form or worksheet.