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.
Printable View
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.
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).]
cool.