home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Show_rec
-
- PARAMETERS _showrow, _showcol
-
- * Show the current reccord pointer and a set of screen
- * coordinates, left justified.
-
- IF PCOUNT() = 0
- _showrow = ROW()
- _showcol = COL()
- ELSE
- IF PCOUNT() = 1
- _showcol = COL()
- ENDIF
- ENDIF
-
- @ _showrow, _showcol SAY RECNO() PICT "@B"
- RETURN((INKEY() != 27))
-
- * End of File
-
-