Hi everybody
I have this code
fopen 0 "c:\5140TXT\5140.txt" READ TEXT
while not feof 0
fgets 0 sLine
if strfind sLine "Running bank : B,Bank package version: saos-06-10-10-0009,Standby bank : A,Bank package version: saos-06-10-10-0009"
goto Good
else
goto Bad
endif
endwhile
pause 3
first I create a filename 5140.txt after open this file for read the content of this file but I have this problem when I use the strfind to search this lines ("Running bank : B,Bank package version: saos-06-10-10-0009,Standby bank : A,Bank package version: saos-06-10-10-0009") don't jump with the goto to the label correct for example if is true must be Jump to the label Good and if is False must be jump to the label Bad but always althougth this strings are correct jump to the label Bad and I don't know if this is the way correct for search many lines.
I have this code
fopen 0 "c:\5140TXT\5140.txt" READ TEXT
while not feof 0
fgets 0 sLine
if strfind sLine "Running bank : B,Bank package version: saos-06-10-10-0009,Standby bank : A,Bank package version: saos-06-10-10-0009"
goto Good
else
goto Bad
endif
endwhile
pause 3
first I create a filename 5140.txt after open this file for read the content of this file but I have this problem when I use the strfind to search this lines ("Running bank : B,Bank package version: saos-06-10-10-0009,Standby bank : A,Bank package version: saos-06-10-10-0009") don't jump with the goto to the label correct for example if is true must be Jump to the label Good and if is False must be jump to the label Bad but always althougth this strings are correct jump to the label Bad and I don't know if this is the way correct for search many lines.