Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
I have a list box on my form and I need to be able to find out the Index of an item on the listbox from it's text.

E.G. I had a listbox like this

Apple
Orange
Banana
Dafuq


I need a way to get the index by using "Orange" or "Apple" so it would return 1 or 0

Is there a way to do this?

ty
Posted

1 solution

The FindString method of ListBox control returns the index of string in the items of the ListBox as shown below:
C#
int orangeIndex = listBox1.FindString("Orange");
int appleIndex = listBox1.FindString("Apple");
 
Share this answer
 
Comments
Joel Whatley- 17-Mar-12 20:48pm    
Love you :D
ProEnggSoft 17-Mar-12 20:51pm    
Thank you.
You may accept the solution if the purpose is served.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900