Hi,
I have the following for-each-statement:
Under special circumstance I set the Table.status from 0 to 1 in this loop.
When I do so, the same record is in Access again in the next flow of
the loop.
Can I do anything, to avoid this?
Thanks.
I have the following for-each-statement:
Code:
FOR EACH Table WHERE Table.Firma = 1
AND Table.status < 9:
...
Table.status = 1. /* Table.status was: 0 */
...
END.
Under special circumstance I set the Table.status from 0 to 1 in this loop.
When I do so, the same record is in Access again in the next flow of
the loop.
Can I do anything, to avoid this?
Thanks.