And Again!
im going to ask this question to the best of my ability! Hang In there!

VB Code:
  1. Private Sub Command2_Click()
  2.  If ListView1.SelectedItem.Index < ListView1.ListItems.Count Then
  3.         ListView1.SelectedItem = ListView1.ListItems(ListView1.SelectedItem.Index + 1)
  4.     Else
  5.         ListView1.SelectedItem = ListView1.ListItems(1)
  6.     End If
  7.    
  8.    
  9.     txtSendTo = ListView1.SelectedItem.Text
  10.    
  11.  Call save
  12. End Sub

i have a scanner that searches for jpeg pictures and when it finds them it saves there location to the ListView box. the code above as you see takes the items found in the search and puts them in the textbox! everytime you click the Command2_Click it goes to the next picture that was found! now what i want it to do is basically repeat itself! the program will do the search after the search i want it to call Command2_Click then it should add the item to the textbox as it does! after that is done i want it to Call save as it does and after it calls save i want it to repeat itself! But the thing is i want it to go to the next listItem the second jpeg picture that is found!
Thanks
Make sence?