//Take what they type in txtItem and add it to the list box private: System::Void btnAdd_Click(System::Object^ sender, System::EventArgs^ e) { //---add item to list box FROM text box lbProducts->Items->Add(txtItem->Text); }