Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. asmtony

    How to get multiple selected values and items from listbox ?

    To loop selected items in a listbox (try not to use object class) List<object> selectedList = new List<object>(); for (int i = 0; i < LstMyListBox.SelectedItems.Count; i++) { selectedList.Add((object)LstMyListBox.SelectedItems[i]); } Does that help?

Part and Inventory Search

Back
Top