in VB6 it was possible just to edit Listbox entries as follows:
Listbox1.ListItems(1).Text = "Some random text"
in VB7 the only option under the ListItems class (Items property) is GetType(). I've been able to use ToString() to return the string, but FromString() doesn't work. How do I do this in VB7?




Reply With Quote