home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST6.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  426 b   |  25 lines

  1. ********************
  2.  
  3. FUNCTION Show_rec
  4.  
  5.    PARAMETERS _showrow, _showcol
  6.  
  7.    * Show the current reccord pointer and a set of screen
  8.    * coordinates, left justified.
  9.  
  10.    IF PCOUNT() = 0
  11.       _showrow = ROW()
  12.       _showcol = COL()
  13.    ELSE
  14.       IF PCOUNT() = 1
  15.          _showcol = COL()
  16.       ENDIF
  17.    ENDIF
  18.  
  19.    @ _showrow, _showcol SAY RECNO() PICT "@B"
  20.    RETURN((INKEY() != 27))
  21.  
  22. * End of File
  23.  
  24.  
  25.