I have a checkedlistbox in my form and want to access name of selected item using index, how to do this. For example I want to access selected item of index 2, how I can do that. Please help me, I will be very thankful.
Please try this, this way you can read the selected item. textbox.Text=checkedlistbox.Items[checkedlistbox.SelectedIndex].ToString();