Does Find First Increments Progress Counter

mayur_kovle

New Member
Hello,

Does FIND FIRST statement increments the progress counter, as it does for FOR EACH & REPEAT and also while making any Procedure calls
 
@mayur kovle,
first of all, FIND st/- is a single record fetcher at a time.
it'll move a single record DB-Table into Record Buffer.
FIND FIRST St/- always find the first Record in the DB-Table.
if u Specify any selection criteria with FIND FIRST St/ then it find first record from subset of DB-Table records which statisfy the criteria.
if u want to increament the progress counter as like FOR EACH...
then u can use FIND NEXT with the DO,REPEAT block.
 
@mayur kovle,
first of all, FIND st/- is a single record fetcher at a time.
it'll move a single record DB-Table into Record Buffer.
FIND FIRST St/- always find the first Record in the DB-Table.
if u Specify any selection criteria with FIND FIRST St/ then it find first record from subset of DB-Table records which statisfy the criteria.
if u want to increament the progress counter as like FOR EACH...
then u can use FIND NEXT with the DO,REPEAT block.

Thanks you very much for the info.
 
Back
Top