MichaelHooker
Programmer
Please bear with me, I only program occasionally - usually two new versions of Delphi come out between my programming stints! I'm using v7 now.
I have a simple but long for loop, which goes like this:
I don't like all the "else if" statements but to put all the tests together with ORs would create a novel in one line. I can't think of any way of implementing the CASE statement, which is rather inflexible in Delphi. However, the issue is that when a condition is met, "continue" does not skip back to the top of the loop. The unwanted data moves on to step (4) and ends up in the final output.
Obviously I'm doing something wrong, but my coding fits in with the Help and every example I can find. Does anyone have any idea what is happening here, please?
Thanks
Michael Hooker
I have a simple but long for loop, which goes like this:
Code:
for i := 1 to StrList.Count - 1 do begin
{(1) reads string i from a stringlist - this represents a row of data imported from a SQLite3 database in tab- delimited form - and allocates the fields to variables}
{(2) goes on to examine the variables and reformat them as necessary}
{(3) a series of tests to see if certain variables, or combinations of variables, meet certain conditions. If they do, I want to abandon the tests and return to the top of the loop to examine the next record without further ado...}
if Whale < Mouse then continue
else if MyIncome - MyMortgage < 0 then continue
else if RomeoLovesJuliet = FALSE then continue
else if... {and so on}
{(4) the next stage further processes the data that has not been discarded - simple, tedious stuff - and displays it in a Memo for a final check}
end;
Obviously I'm doing something wrong, but my coding fits in with the Help and every example I can find. Does anyone have any idea what is happening here, please?
Thanks
Michael Hooker