home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Adjust
-
- * This function is used to avoid the simulated blank
- * record in a Clipper scanning mode. Sometimes when
- * scanning through a file, a blank record will appear
- * at the beginning or at the end of the file. In this
- * case, call this funciton to avoid the trouble.
-
- IF EOF()
- GO BOTTOM
- ELSE
- IF BOF()
- GO TOP
- ENDIF
- ENDIF
-
- RETURN("")
-
- * End of File