how is it possible to delete double-entries from a ListBox? Let’s say I’ve got the following Listbox:
5
4
6
4
7
5
As a result I want to have this one:
5
4
6
7
Thank you for your help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
while adding your items to list, u use loop to add.
this is the way to add unique numbers
if you use direct datasource, Jon Skeet’s answer is for you.