Click to See Complete Forum and Search --> : Array Property


montalli
November 23rd, 1999, 01:02 PM
Hi,
I'm trying to use an array property, just like the .list in a listbox control, with a PropertyPage, but I'm not getting any result.
Can a Let or Get property result an array? How?
I need the programmer to provide some strings that will be used later.

November 24th, 1999, 08:36 AM
why dont u use a simple text box with the multiline property set to true. then it becomes like a list box and the user can enter the list items using Ctrl+Enter as the delimiter. u can later use the Split function to retrieve all the items from the text box and populate an array

montalli
November 25th, 1999, 06:21 AM
It's a great idea, thank you. I can even show a listbox to the user, but use a textbox to save data. But, what's that "split function" you said? I'm using VB5, so I don't have this function. Am I supposed to write it?