info("eof")
The info(“eof”) function returns true if the active record is currently the last visible (selected) record.
Description
The info(“eof”) function returns true if the active record is currently the last visible (selected) record. (Note: eof stands for end of file.)
This example loops until the database is at the very last visible record.
loopwhile not info("eof")
downrecord
endloop
See Also
- downrecord -- moves the cursor down one visible record.
- field -- tells Panorama to move to the specified field for the current record.
- firstrecord -- makes the first visible (selected) record in the database the active record.
- info("bof") -- returns true if the active record is currently on the first visible (selected) record.
- lastrecord -- makes the last visible (selected) record in the database the active record.
- left -- makes the previous field active in the active window.
- right -- moves the cursor to the next field in the active window.
- uprecord -- moves the cursor up one visible record.
History
10.0 | No Change | Carried over from Panorama 6.0 |