Hi,
I need to edit the item in the ListBox (if u can , Explain with sample code). If its not possible to edit thelist box then giveme the alternative solution for me.
Thanks in Advance.
Here is some sample code for an Editable ListBox
http://www.csharphelp.com/archives2/archive337.html
Hope this helps
For a non-databound list box you can just manipulate the data in the items collection directly.
listbox.Items[index] = <your Value here>;