ok here is my code...
VB Code:
For i = 1 To 138
Set ini = New Class1
With ini
.File = App.Path & "\worlds.ini"
location = .GetValue("World" & i, "Location")
types = .GetValue("World" & i, "Type")
flag = .GetValue("World" & i, "Flag")
If types = "Members" Then
End If
Set list_item = listview1.ListItems.Add(, , location)
list_item.SubItems(1) = i
list_item.SubItems(2) = Server_Players(i, strhtml)
list_item.SubItems(3) = types
End With
Next i
and I need to make it go to the next i under this:
VB Code:
If types = "Members" Then
and I cant use a there because you cant do that... so how do I do this?