//Take what they type in txtItem and add it to the list box private void btnAdd_Click(object sender, EventArgs e) { //---add item to list box FROM text box lbProducts.Items.Add(txtItem.Text); }