home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol110 / defaults.acg < prev    next >
Encoding:
Text File  |  1984-04-29  |  566 b   |  27 lines

  1. * defaults.cmd 02/08/83
  2. * this will allow the entry of default variables for add.cmd
  3.  
  4. * save the current memory
  5. SAVE TO temp
  6.  
  7. * get old memory variables for adding records
  8. RESTORE FROM ADD
  9.  
  10. * set up screens and prompts
  11. SET FORMAT TO mod-rec
  12. STORE 'Enter data input into any field' TO prompt1
  13. STORE 'This data will be used when adding records' TO prompt2
  14. STORE 'Control Q to end session ' TO prompt3
  15. STORE 'Create new data entry defaults' TO mode
  16.  
  17. * get the new defaults
  18. READ
  19.  
  20. * store the new variables
  21. SAVE TO ADD
  22.  
  23. * get back the original memory
  24. RESTORE FROM temp
  25.  
  26.  
  27.