private void Choose_Click(object sender, EventArgs e)
{
  label1.Text = "You selected ";
  for (int i = 0; i < checkedListBox1.Items.Count; i++)
     if (checkedListBox1.GetItemChecked(i)) label1.Text += checkedListBox1.Items[i] + "\n";
}
