I use the following code to add a item to my listView...
ListViewItem^ subitem = gcnew ListViewItem();
subitem->SubItems->Add(textBox2->Text);
listView3->Items->Add(subitem);
What code would I add onto this so it can retrieve the index of this newly added item?
Thanks.
