Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

Posted

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:

Never trouble another for what you can do for yourself.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...