home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / a / a610 / 6.ddi / DEMO / FGL / F_SPRODU.PER < prev    next >
Encoding:
Text File  |  1989-12-08  |  830 b   |  29 lines

  1. DATABASE leads
  2. SCREEN
  3. {
  4.  
  5. PRODUCT INFORMATION (no error checking version):
  6.  
  7. Use ARROWS and RETURN to move between fields and rows, ESCAPE to exit.
  8. Press FUNCTION KEY 1 to insert a new row, FUNCTION KEY 2 to delete a row.
  9.  
  10. Code     Price      Description
  11.  
  12. [cod]    [pri  ]    [des                                     ]
  13. [cod]    [pri  ]    [des                                     ]
  14. [cod]    [pri  ]    [des                                     ]
  15. [cod]    [pri  ]    [des                                     ]
  16. [cod]    [pri  ]    [des                                     ]
  17. }
  18.  
  19. TABLES product
  20.  
  21. ATTRIBUTES
  22.    cod   = product.pcode, AUTONEXT;
  23.    pri   = product.price, AUTONEXT;
  24.    des   = product.descrip;
  25.  
  26. INSTRUCTIONS
  27.    DELIMITERS   "  "
  28.    SCREEN RECORD sr_product[5] (product.pcode THRU product.descrip)
  29.