ok here is my code...

VB Code:
  1. For i = 1 To 138
  2.     Set ini = New Class1
  3.         With ini
  4.         .File = App.Path & "\worlds.ini"
  5.         location = .GetValue("World" & i, "Location")
  6.         types = .GetValue("World" & i, "Type")
  7.         flag = .GetValue("World" & i, "Flag")
  8.         If types = "Members" Then
  9.        
  10.         End If
  11.         Set list_item = listview1.ListItems.Add(, , location)
  12.             list_item.SubItems(1) = i
  13.             list_item.SubItems(2) = Server_Players(i, strhtml)
  14.              list_item.SubItems(3) = types
  15.     End With
  16.     Next i

and I need to make it go to the next i under this:
VB Code:
  1. If types = "Members" Then

and I cant use a
VB Code:
  1. next i
there because you cant do that... so how do I do this?