-
Array Property
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.
-
Re: Array Property
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
-
Re: Array Property
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?