05-29-2013, 05:58 PM
Finally found something about it, with the SelectedItem function.
private: System::Void listBox1_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) {
String^ curItem = listBox1->SelectedItem->ToString();
textBox1->Text = curItem;
}
thanks so much kokoul
i gonna try it


