//---take item and cost & put them in textboxs private: System::Void lstItems_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) { //------put what they chose FROM the listbox TO the textbox txtItem->Text = lstItems->Text; txtQuantity->Focus(); //---be nice and move the cursor for them }