CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Array Property

  1. #1
    Join Date
    Oct 1999
    Location
    Florianopolis, SC, Brazil
    Posts
    5

    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.


  2. #2
    Guest

    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



  3. #3
    Join Date
    Oct 1999
    Location
    Florianopolis, SC, Brazil
    Posts
    5

    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?


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured