Am I to assume you have a list files in the array, and you want to send that
you a combo box?
Or, you mentioned linefeeds? Does that mean you have perhaps a string that
is delimited by linefeeds? The mention of linefeeds here is confusing.
Or perhaps, you have an array where each element is a folder, and thus for
each element of the array, the string is delimited for each file by a
linefeed?
You might want to clarify what you mean by linefeeds here, and how they fit
into the array you have.
If the results is only going to be 50, or perhaps max 100 files, then I
would consider using a delimited string and use a value list for the combo
box. If the array is going to on average have more then 100 files, then you
*might* hit the max char length of a value list (4000 characters). (100
files of 40 chars would hit the max quite fast).
You can also map the contents of the array to a combo box by using a call
back function. This would save the creating of the string. However, it
really depends on how you answer the above questions.
You can also write some code to sort the array also.