I use the following to clear the whole listView
void Form1::button2_Click(System::Object^ sender, System::EventArgs^ e)
{
ActiveControl = tabControl1->SelectedTab;
if (listView3->Items->Count == 0)
{
::MessageBox(0, "Please select data.", "Failed to clear data.", MB_OK | MB_ICONERROR);
}
else
{
listView3->Items->Clear();
}
}
I then try to use the following to clear a selected item...but it crashes...
void Form1::listView3_ItemCheck(System::Object^ sender, System::Windows::Forms::ItemCheckEventArgs^ e)
{
listView3->Items[e->Index]->Remove();
}
What would I replace my remove function with so it doesn't crash?
EDIT: This is how I add to my listView3...
ListViewItem^ subitem = gcnew ListViewItem();
subitem->SubItems->Add(textBox2->Text);
listView3->Items->Add(subitem);