home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / software / varie / xbase / data / toolbar / goto.xbase < prev    next >
Text File  |  1999-02-13  |  231b  |  24 lines

  1. /* GoTo */
  2.  
  3. OPTIONS RESULTS
  4.  
  5. GETFIELD
  6. record=result
  7.  
  8. GETNROFRECORDS
  9. nrofrecords=result
  10.  
  11. IF record<1 THEN DO
  12.     DISPLAYBEEP
  13.     RETRYINPUT
  14.     EXIT
  15. END
  16.  
  17. IF record>nrofrecords THEN DO
  18.     DISPLAYBEEP
  19.     RETRYINPUT
  20.     EXIT
  21. END
  22.  
  23. CURRENTRECORD record
  24.