home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / library / qb_pds / papers / papers.doc < prev    next >
Encoding:
Text File  |  1992-03-01  |  1.7 KB  |  50 lines

  1. PAPERS.BAS
  2. ──────────
  3.  
  4. To run it, fire up QBASIC and open PAPERS.BAS.  Alternatively, use:
  5.  
  6.         QBASIC /RUN PAPERS
  7.         
  8. The opening prompt is very freindly.  :-)  Just type the name of the file
  9. you want to load.  If you want to start afresh, hit return without entering 
  10. anything.  To see a list of files, type DIR.
  11.  
  12. If you're starting a new file, you'll now be prompted to enter data on the 
  13. first contract in the file.  The contract number is a STRING of length 6 
  14. (this is the size number used by Salmat).  Next you'll have to enter the 
  15. date you got the contract in the following format:
  16.  
  17.         dd/mm/yy
  18.         
  19. You can use anything you like for the slashes, but you MUST use two digits 
  20. for each bit.  Also note that the date is in normal Australian format, 
  21. rather than Yankese.  If you're a programmer this can be fixed pretty easy 
  22. to whatever format you prefer.
  23.  
  24. Next the date you got payed.  If you haven't been payed yet then hit return 
  25. or give the date 00/00/00.
  26.  
  27. Finally, the amount you earnt.  This is (of course) a real number (that is, 
  28. it can have a decimal point).  The figure is in dollars, but could be 
  29. converted real easy.
  30.  
  31. To enter more contracts, press 'a'.
  32.  
  33. To get rid of the highlighted contract, press 'd'.
  34.  
  35. To change the highlighted contract, press 'e'.  If you give a non-response 
  36. to any of the prompts in this bit then the field will stay unchanged.
  37.  
  38. Once you've got two or more contracts, pressing the up and down keys will 
  39. move the highlight bar.
  40.  
  41. When you've got 15 or more contracts entered, pressing page up and page down 
  42. will page you through the contracts.
  43.  
  44. Other keys:
  45.  
  46.         's'             Saves your data
  47.         'x'             exits the program
  48.         f1              help screen
  49.  
  50.