I successfully implement in my application a listview that can get the values of selected items using a for loop
for (int i = 0; i < eventlv.Items.Count; i++)
{
if (eventlv.Items[i].Checked == true)
and using this to get the specific value on my parameter
eventlv.FocusedItem.SubItems[0].Text
Though, I found out that a listview also supports checkbox so I decided to work on it but I'm having difficulty. How can I determine which is checked and get the value of subitem[0].