Wont delete from list box

plutonyum

Newcomer
Joined
Oct 14, 2008
Messages
2
hello all,
nameindex = lstname.SelectedIndex

lstscore.Items.Remove(nameindex)
lstage.Items.Remove(nameindex)
lstscore.Items.Remove(nameindex)
lstpassword.Items.Remove(nameindex)


for some reason, when i play this program, it wont delete the selectedindex item number, say 11. when i click delete, it wont delete the 11th data input. in fact, it wont do anything - am i using the wrong code? please help!
thanks
plutonyum
 
RemoveAt

If you want to remove an item based on its index, you need to use the RemoveAt method:

Visual Basic:
lstscore.Items.RemoveAt(nameindex)
lstage.Items.RemoveAt(nameindex)
lstscore.Items.RemoveAt(nameindex)
lstpassword.Items.RemoveAt(nameindex)

Good luck :cool:
 
Back
Top