for and exit

Cor

Active Member
Licensed User
Longtime User
Is there a way to solve the exit problem for me

dim sList as list
dim found=boolean

found=false

for i = 0 to sLlist.size-1
If sList.Get(i) = "data" Then 'only exit here
found=true
Exit 'not here
end if
next

grCor
 

Cor

Active Member
Licensed User
Longtime User
I have to use this loop because if want the first occurence after

e.g

[C]
f4=01

[D]
f4=02

I use the same keys values because i use ini files

grCor
 
Top