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

  1. DATABASE leads
  2. SCREEN
  3. {
  4.  
  5. PRODUCT INFORMATION:
  6.  
  7. Use ARROW keys and RETURN to move between fields and rows.
  8. Press FUNCTION KEY 1 to insert a new row.
  9. Press FUNCTION KEY 2 to delete a row.
  10. Press CONTROL-B before you leave a row to change it back to the way it was.
  11. Press ESCAPE to exit.
  12.  
  13. Code     Price      Description
  14.  
  15. [cod]    [pri  ]    [des                                     ]
  16. [cod]    [pri  ]    [des                                     ]
  17. [cod]    [pri  ]    [des                                     ]
  18. [cod]    [pri  ]    [des                                     ]
  19. [cod]    [pri  ]    [des                                     ]
  20. }
  21.  
  22. TABLES product
  23.  
  24. ATTRIBUTES
  25.    cod   = product.pcode, AUTONEXT;
  26.    pri   = product.price, AUTONEXT;
  27.    des   = product.descrip;
  28.  
  29. INSTRUCTIONS
  30.    DELIMITERS   "  "
  31.    SCREEN RECORD sr_product[5] (product.pcode THRU product.descrip)
  32.