home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / DATABASE / CHEKBOOK.ARK / CHEKBOOK.DOC < prev    next >
Text File  |  1990-01-31  |  10KB  |  184 lines

  1. C H E C K B O O K
  2. -----------------
  3.  
  4. To celebrate the entry of CP/M into the 90's, I submit this program to 
  5. the public domain.  This is only the first level of a set of programs
  6. which include budget planning, personal accounting, and income forcasting,
  7. among other things.  If you like CHECKBOOK and would like to know more 
  8. about other programs that I offer, write me at:
  9.  
  10.                       Jason Nemrow
  11.                       Nemrow Family Partnership
  12.                       111 South Boston Avenue
  13.                       Portales, NM 88130
  14.  
  15. I am committed to offering quality CP/M programs well into the 1990's!
  16.  
  17.  
  18. Directions
  19. ----------
  20.  
  21. When the program begins, it askes for the drive you will use.  It will
  22. accept a single-letter response, such as: A, B, C, or so on.  This program
  23. is not configured to work with ZCPR3 and you will have to choose the USER
  24. number outside of the program.  You are then asked for the data file name,
  25. which should only be 8 characters long.  The file type ".CKB" will be added
  26. onto the file name.  If this is a new file, the program will tell you so.
  27.  
  28. The main menu gives you five choices to make:
  29.     1) to ADD new entries to the checkbook file.  This lets you write in
  30.        your newest entries at the end of the file, the same way you would
  31.        write in checks and deposits in your Register that comes with your
  32.        checks.
  33.     2) to EDIT existing entries in the checkbook file.  In case you typed
  34.        that Check # 101 was written to DumBo SoftWare and later realized
  35.        that it should have been to Jumbo Hardware.  You can edit any part
  36.        of the entry, including the check number and the amount.
  37.     3) to VIEW the Checkbook.  This lists your entries in basically the 
  38.        same way you will find them in a regular account Register.  In order
  39.        to save space, I combined the separate columns for checks and 
  40.        deposits.  This made more room available for the Book Balance, which
  41.        is what you are used to seeing in the Register (the little record
  42.        book that came with your checks) and also a Bank Balance, which is
  43.        something your bank normally keeps track of.
  44.     4) to VERIFY entries in your Checkbook.  I say VERIFY for the lack of 
  45.        any other word to describe it.  This option is used when your bank
  46.        statement is sent to you in the mail, to verify which checks and 
  47.        deposits they have recieved and recorded.  The fact of whether your
  48.        entries are verified affects if they are included in the Bank Balance.
  49.     5) to RETURN to CP/M.  I wouldn't want to to have to turn off your
  50.        computer just to quit the program.  This option will update your
  51.        Checkbook with any changes you have made during the session, so
  52.        if you really hate retyping a lot of work, please remember to use
  53.        this option to finish the session.
  54.  
  55.  
  56. Procedures
  57. ----------
  58.  
  59. I am lucky in that I just moved and I don't have very many checks written
  60. out to begin with.  The major part of the job will be to enter all your
  61. checks into the Checkbook, by choosing Option 1 from the main menu.  You
  62. will first be asked what account this is to be entered in.  This is a
  63. feature that is not really used on this particular program, but is used
  64. by other programs I offer that use your Checkbook files.  Contact me at the
  65. above address if you are interested.  
  66.  
  67. You are then asked for the Type of Transaction, the choices of which are
  68. listed below:
  69.  
  70.      1) Unverified Check          2) Verifed Check
  71.      3) Unverified Charge         4) Verified Charge
  72.      5) Unverified Deposit        6) Verified Deposit
  73.      7) Unverified Credit         8) Verified Credit
  74.  
  75. "Unverified" means that your bank hasn't informed you that it has recieved
  76. that transaction and recorded it on their records.  "Verified" means that
  77. the bank has sent you a statement which tell you that it has recieved a 
  78. transaction and recorded it.  "Check" is that little piece of paper you
  79. write on that makes you poorer, and a "Deposit" is a wonderful thing that,
  80. when given to your bank, makes you richer!  "Charges" or "Credits" are
  81. transactions that the bank makes behind your back, basically charging you
  82. for services it renders, or crediting you if you were fortunate enough to 
  83. get a little interest off of your money.  I've never heard of "Unverified
  84. Charges or Credits" because you really can't gauge these things ahead of
  85. time, but they are included to retain the logic of the numbering system I
  86. chose to use.
  87.  
  88. After the Type of Transaction, you will be asked for a description of your
  89. entry.  I usually put the name of the company I wrote the checks to, or say
  90. that I got a nice interest credit from the bank.  Please note that if you
  91. said that this was a deposit, you will not be asked to give a description,
  92. it will be entered in automatically.
  93.  
  94. Next, you will enter the amount of the transaction, which is how much your
  95. check was made out for, or how much you deposited in the bank.  It will then
  96. ask if it is all correct and if not, allow you to enter it all over again.
  97. If you indicate that everything is correct, then you will be returned to the
  98. Main Menu.
  99.  
  100. The EDIT commmand, Option 2 from the Main Menu, lets you fix a faulty entry.
  101. It works basically the same way as entering the new entry, but askes you
  102. some questions so that it can FIND the right entry to change.  If you are
  103. trying to find a check, take option 1 of the Edit Menu and type in the check
  104. number as instructed.  If you are trying to find a deposit, charge, or a
  105. credit, choose Option 2 and follow the directions.  **NOTE ON DATES**-- I
  106. didn't really feel the desire to make a really complex finding section on this
  107. program, so you must type in the date EXACTLY as it was typed in as a new
  108. entry.  I make it a habit of always filling all the space alloted, like
  109. typing "04JAN90" instead of just "4JAN90".  This way, I never have to figure
  110. out how I typed it so I can find it later--my system is already set up.  Oh,
  111. you don't have to remember if you typed the month in CAPS--the program will
  112. find it as long as all of the numbers and letters are in the same order.
  113. Each part of the entry is shown and you are given the opportunity to change
  114. any part.  It askes if all is CORRECT, and proceeds accordingly.
  115.  
  116. It would have made sense if VERIFY had come before VIEW, but I really didn't
  117. feel like being very sensible!  Ok, VIEW is Option 3 and probably the most
  118. useful part of the program.  It pages through all of your entries, in the 
  119. order that you entered them.  If you keep a Register along with this program,
  120. you can check your math (As I do).  The amounts in the "Book Bal." column
  121. should match up very nicely with the running balance in your Register.  Now,
  122. There is some things different here.  There are three columns that you may
  123. not be familiar with.
  124.  
  125. The "Ac" column tells you which account this entry should be grouped with.
  126. As I said before, this portion serves no useful purpose in this program, but
  127. is used with other programs that will use your Checkbook files.  Again,
  128. contact me for more info.  If it makes you feel any better, I really think
  129. it is software piracy to charge over $15 for a program, so you can rest
  130. assured that I'm not here to squeeze your radishes.  I usually just put a
  131. "1" in the account part and let it go at that.
  132.  
  133. The "T" column lets you know the type.  I would have actually had the program
  134. write out the types here, but my screen (and probably yours as well) was too
  135. small.  These numbers are the same as the ones above (in the ADD section) and
  136. you can interpret them that way.
  137.  
  138. The "Bank Bal." column is really the one that gives this program some flavor!
  139. My wife always asks me why the balance the bank statement gives is always
  140. different from the one in her checkbook Register.  It has a lot to do with the
  141. fact that the bank has all of your money and really doesn't feel it needs to 
  142. work quickly on keeping things up-to-date.  There are other reasons (which
  143. make more sense), but the bank typically hasn't recieved all of the checks
  144. you've written when it tells it's computer to print out your statement.
  145. Therefore, your "Book Bal." will almost never be the same as your "Bank Bal."
  146. If everything is entered in properly and verified correctly (as I will explain
  147. next), your "Bank Bal." should equal the amount that your bank statement says
  148. you have in the bank.
  149.  
  150. The VERIFY section, option 4 from the Main Menu, is a specialized EDIT routine.
  151. Instead of letting you change any part of an entry, it only alters a flag that
  152. indicates whether the entry has been recorded by the bank or not.  VERIFY 
  153. finds each entry in the same manner that EDIT does and then changes it from
  154. "Unverified" to "Verified".  I put this section in at the last moment to 
  155. save everyone a lot of grief from having to wade through a whole entry just to
  156. change a flag.  It will tell you if you are trying to verify an entry which
  157. has already been verified, which might tell you that you are altering the wrong
  158. entries.  This basically covers all of the options available in this version.
  159.  
  160.  
  161. How to Use It
  162. -------------
  163.  
  164. You should ADD checks to the Checkbook just after they are written out (I
  165. usually enter everything in at the end of each day).  You can VIEW the 
  166. Checkbook periodically to see just how poor you are.  When a bank statement
  167. comes in, you will need to VERIFY which checks and deposits the bank has
  168. recorded.  You will also need to ADD any charges or credits the bank has seen
  169. fit to give to (or take from, more likely) you.  VIEW the Checkbook again to
  170. see if the bottom line of your bank statement equals the last number in the 
  171. "Bank Bal." column.  If it doesn't, you'll need to check through each entry
  172. to be sure you typed them correctly.  If you find any errors, you should EDIT
  173. them.  If you have check through and can find no problems and the numbers
  174. just don't match, GO TALK TO YOUR BANKER!  If you are lucky, he will have
  175. an IBM computer doing the books and you can mention that this could be half of
  176. his problem!  He should have stuck with CP/M!!
  177.  
  178. Parting Shot
  179. ____________
  180.  
  181. Let me know of what changes need to be made on CHECKBOOK.  I will send any 
  182. updated versions through the grapevine and will target certain BBS who want
  183. to be kept up to date.  It's 1990.  Let's not allow CP/M to die.
  184.