Okay this is probably really simple, but i need to know how to chane the text of a selected 'value' in a list box, can someone please help me
Thanx
Cease
Printable View
Okay this is probably really simple, but i need to know how to chane the text of a selected 'value' in a list box, can someone please help me
Thanx
Cease
Code:Private Sub List1_Click()
List1.List(List1.ListIndex) = "What Ever"
List1.Refresh
End Sub