When I click in listview control to send data in specific textbox then show the error.
run time error 380 Invalid property value.
I write this code:
Private Sub LVEmp_ItemClick(ByVal Item As MSComctlLib.ListItem)
With Item
Me.txtSrNo = .Text
Me.txtamount.Text = .SubItems(mlngCUST_LAST_IDX)
Me.txtdate.Text = .SubItems(mlngCUST_LAST_IDX)
End With
End Sub