hi! Im new with VB.net and Im having prob with listview... "Argument out of range exception"
- the first time i had this, I was able to resolve it by changing the tabs on every textbox. But it appeared again after a day. Here's my code:
=======*****======
If StudList.SelectedItems.Count > 0 Then
Id = StudList.SelectedItems(0).Text
UpdateRec.Show()
UpdateRec.txtStudNo.Text = StudList.SelectedItems(0).SubItems(0).Text
.
.
.
UpdateRec.txtEduc.Text = StudList.SelectedItems(0).SubItems(36).Text >>start of the argument
UpdateRec.txtWork.Text = StudList.SelectedItems(0).SubItems(37).Text
UpdateRec.txtTraining.Text = StudList.SelectedItems(0).SubItems(38).Text
UpdateRec.txtLicense.Text = StudList.SelectedItems(0).SubItems(39).Text
End If
=====*****======
hope you could help me out