View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
NateBuckley NateBuckley is offline
external usenet poster
 
Posts: 146
Default String array to a comboBox

Greetings,

I have a function which returns an array of strings, I wish to fill my
combobox with this array by doing something like the following

cmbBoxList.addItem manager.GetStringArray

This doesn't work. I can add them obviously by getting the array and looping
through the array adding each String one by one. Just wondering if there is a
better way that I may be missing.

Thanks in advance.