i want to get the row(s) when the checkbox is check/uncheck in the listview.. thank u...
For Each Item In CheckedItems
If (Item.SubItems(4).Text) = "Cash" Then
'Code Here
ElseIf (Item.SubItems(4).Text) = "Check" Then
'Code Here
End If
Next
If (e.CurrentValue = CheckState.Checked) Then
If LstvwBankDeposits.Items(0).SubItems(4).Text = "Cash" Then
'Code Here
ElseIf LstvwBankDeposits.Items(0).SubItems(4).Text = "Check" Then
'Code Here
End If
ElseIf (e.CurrentValue = CheckState.Unchecked) Then
If LstvwBankDeposits.Items(0).SubItems(4).Text = "Cash" Then
'Code Here
ElseIf LstvwBankDeposits.Items(0).SubItems(4).Text = "Check" Then
'Code Here
End if
End if