plutonyum Posted October 14, 2008 Posted October 14, 2008 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 Quote
MrPaul Posted October 14, 2008 Posted October 14, 2008 RemoveAt If you want to remove an item based on its index, you need to use the RemoveAt method: lstscore.Items.RemoveAt(nameindex) lstage.Items.RemoveAt(nameindex) lstscore.Items.RemoveAt(nameindex) lstpassword.Items.RemoveAt(nameindex) Good luck :cool: Quote Never trouble another for what you can do for yourself.
plutonyum Posted October 15, 2008 Author Posted October 15, 2008 Re: RemoveAt thanks mate, that fixed it. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.