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

Thread: add items List

  1. #1
    Guest

    add items List

    is there a way to add items to a listbox or listview control during run time instead of design time?


  2. #2
    Guest

    Re: add items List

    use listbox.additem "One"

    dim i as integer
    for i=0 to 10
    listbox.additem "one"
    next i
    you can remov listbox.removitem



  3. #3
    Join Date
    Jun 2000
    Location
    germany
    Posts
    6

    Re: add items List

    Sure,
    use LISTBOXName.AddItem=......
    The Item must be a STRING-Variable


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