Windows Forms - C #
I wonder edit text / numbers that I have added to a listbox.
I to display the names in the listbox use this code
listBox1.DataSource = itemsfim;
To add one more name in the ListBox use:
itemsfim.Add ("Jorge - Portugal");
Now I would like to change in the visual listbox.
For example, take 2 clicks on the name and open a new form to change that name.
Can you give examples.
respects