kevin

kevin

  • NA
  • 15
  • 0

Listbox Items Question

Feb 18 2010 12:27 AM
I'm sending Selected items form a listbox to a textbox by pressing a button using this syntax:

private void btnDesserts_Click(object sender, EventArgs e)
        {
            textBox1.Text += lbxDesserts.SelectedItem.ToString() + ", ";
        }

but when i click the button only 1 item is inserted into the texbox, but i selected 3 items.

Any idea?

Answers (2)