private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) { // ---now load the list box. It will hold a description, price, and name of the thumbnail image to display lstProducts->Items->Add("Birds 49.95"); lstProducts->Items->Add("Horse 649.95"); lstProducts->Items->Add("Fish 4.95"); lstProducts->Items->Add("Cats 29.95 "); lstProducts->Items->Add("Puppy 29.95"); lstProducts->Items->Add("Rabbit 39.95"); lstProducts->Items->Add("Sheep 249.95"); lstProducts->Items->Add("Turtle 6.49 "); }