2018-04-12 04:21 PM
DIM sarray[]
var = ""
filename = "ProjectNotes.txt"
ch1 = OPEN ("text", filename, "MODE=RO, LIBRARY")
i = 1
j = 1
y = 1
sarray=""
repeat
n = INPUT (ch1, y, 1, var)
pos = STRSTR (var, "EF-25")
L1 = STRSUB (var, 1, pos)
sarray = var
j=j +1
i=i+1
y=y+1
until var = prefix
CLOSE ch1
VALUES "refnote" sarray
This repeats over and over thus causing a crash but I think it’s something along the lines that I am going for. I want it to repeat until one of the lines in my contains “EF-25” then not include that line. If anyone can help me solve it then I would really appreciate it!2018-04-12 05:25 PM