Basicly I am taking one item from one listbox and matching it with all the other items in the second listbox. Here is what it looks like:
VB Code:
Dim Check As Boolean For X = 0 To List1.ListCount - 1 Check = PortCheck(List2.List(0), List1.List(X)) If Check = False Then Status.Caption = "Moving on..." End If Next X
Now, that will go through the portcheck with each item in the second listbox. Now here is what I am having trouble figuring out how to do. Once the second listbox has ran out of items to check with, I want the first item in the first listbox to move down one, then repeat the same loop as shown above. So basicly I just need to put the above loop in a bigger loop, but I really can't figure out how >_< Any help would be nice![]()





Reply With Quote