home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / disk_20.zip / DB3AMORT.ZIP / FOSE0009.PRG < prev   
Text File  |  1988-02-02  |  1KB  |  42 lines

  1. CLEAR
  2. CLEAR ALL
  3. SET TALK OFF
  4. SET STATUS OFF
  5. SET SCOREBOARD OFF
  6.  
  7. TEXT
  8. *** AMORT.DOC
  9. *** Amortization Program for DBASE III
  10. *** By Morris Pyle
  11.  
  12. *** Simply copy the DBASE III files - amort.pro, amort.DBF, & amort.FRM,
  13. *** on the disk you normally use for programs and files, and key in
  14. *** the following two commands (1)  'SET PROCEDURE TO AMORT.PRO' AND
  15. *** (2) 'DO AMORT'.  The program will ask you if you want it to figure
  16. *** the monthly payments for you, and should be self-explanatory.
  17.  
  18. *** Negative amortization loans will work just fine, as do balloon
  19. *** payments (the program asks you if you want to show any remaining
  20. *** balance as a balloon payment).
  21.  
  22. *** For variable rate loans, simply run a schedule without a balloon
  23. *** payment of the remaining balance for each period the interest is
  24. *** fixed, and then run a new schedule at the next period's interest
  25. *** rate, etc.
  26.  
  27. *** The program is set up for monthly payment loans, but could be easily
  28. *** modified for other period installment loans.  (The formula for
  29. *** figuring the payment is straight out of a Basic Applications Handbook).
  30. ENDTEXT
  31. WAIT
  32. CLEAR
  33.  
  34. SET PROCEDURE TO AMORT.PRO
  35. DO AMORT
  36.  
  37. CLEAR
  38. SET SCOREBOARD ON
  39. SET STATUS ON
  40. SET TALK ON
  41. RETURN
  42.