I have listbox, button, and textbox controls in a Windows application. How can I display multiple selected values in a textbox.
this is my code
textBox1.Text = listBox1.SelectedItems.ToString();
but it display in textbox like this: (I select more than one item)
System.Windows.Forms.ListBox+Selec.
please help me