ListbOx

Jos?
22 de Febrero del 2004
Hola yo tengo un items seleccionado en un listbox y yo quiero q el item seleccionado cambie al tocar un boton al text q tengo en un textbox, como hago?
Gracias.

en?
22 de Febrero del 2004
Private sub Boton_Click()
If List1.ListIndex < 0 then exit sub
List1.List(list1.ListIndex) = Text1
End sub