Results 1 to 3 of 3

Thread: updating listbox text values

  1. #1
    Guest

    Post

    Is there anyway to update the items in a list box without a complete clear and re-add? ie., I only want to change the text for one item without altering its location in the list.


  2. #2
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431

    Post

    Sure
    To change the 2nd entry in the list
    List1.List(1) = "new value"

    Or to change the selected entry
    List1.List(List1.ListIndex) = "new value"


    ------------------
    Marty
    What did the fish say when it hit the concrete wall?
    > > > > > "Dam!"

    [This message has been edited by MartinLiss (edited 02-14-2000).]

  3. #3
    Guest

    Post

    cool.

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