home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug054.arc / ADDR2.DOC < prev    next >
Text File  |  1979-12-31  |  5KB  |  137 lines

  1.  
  2. The MUGWA ADDRESS FILE
  3.  
  4. Very short instructions here !
  5.  
  6. Run the program from the DOS A> prompt by typing :
  7.  
  8.         MBASIC ADDR <RETURN>
  9.  
  10. If no files on the selected disk, ADDR will go to the initialisation
  11. routine. It will re-run when that is done.
  12.  
  13. the screen is set for both data entry and retrieval. Type a name...
  14. if not in the file, you will be prompted  for the address etc.
  15. To escape from this mode without entering a record, press CTRL-K
  16. to clear the windows.
  17.  
  18. If the name has already been entered into the file, the record will
  19. be displayed in the windows.
  20.  
  21. If you want to EDIT, press CTRL-E
  22. To DELETE, press CTRL-D
  23.  
  24. To move forward to the next record, press CTRL-G
  25. To move forward 10 records, press CTRL-W
  26. To move back one record, press CTRL-A
  27. To move back 10 records, press CTRL-Z
  28.  
  29. To display the FIRST record, press CTRL-F
  30. To display the LAST record, press CTRL-X
  31.  
  32. To RE-INDEX the file, press CTRL-R
  33. To SORT, press CTRL-T
  34.  
  35. To print each displayed record, press CTRL-P (again to turn it OFF)
  36. To print labels or address book, press CTRL-L
  37.  
  38. You can type a record number instead of a name. it will be displayed
  39. if its valid.
  40.  
  41. If you type a '@' instead of name, the cursor will move to the
  42. CATEGORY field. Another '@' will put it back on name.
  43.  
  44. If you type a '*', the program will end.
  45.  
  46. If you get records by category, the first match will be displayed and
  47. you will be asked 'IS THIS THE ONE (Y/N) ?' if it is, type Y or N if
  48. not. If you type N, the next match will be displayed, and so forth.
  49.  
  50.  
  51. DELETED records are only MARKED as deleted with *** in the street field.
  52. They get actually lost ONLY if you SORT the file, and the space is
  53. recovered for re-use. RE-INDEXing the file does NOT remove the marked
  54. records.
  55.  
  56. CATEGORY is set up for my work. The 8 characters have meanings as
  57. follows :
  58.  
  59. DIGIT !! MEANING                          !! VALUES
  60. POS'N !!                                  !! used
  61. ------!!----------------------------------!!---------------------------
  62.  1    !! Transaction type                 !! 0 = NO RESPONSE
  63.       !!                    !! 1 = enquiry
  64.       !!                  !! 2 = purchase
  65.       !!                  !! 4 = contract
  66. ------!!----------------------------------!!---------------------------
  67.  2    !! computer type                  !! 0 = unknown or none
  68.       !!                                  !! 1 = TRS-80 or SYSTEM-80
  69.       !!                   !! 2 = CP/M
  70.       !!                  !! 4 = IBM or clone
  71. ------!!----------------------------------!!---------------------------
  72.  3    !! peripherals               !! 0 = unknown
  73.       !!                  !! 1 = cassette
  74.       !!                  !! 2 = disks
  75.       !!                  !! 4 = hard disk
  76. ------!!----------------------------------!!--------------------------
  77.  4 & 5!! Date (year) of transaction       !! 00 - 99
  78. ------!!----------------------------------!!--------------------------
  79.  6 & 7!! item sold (if any - see above)   !! 0 = none
  80.       !!                         !! 1 = program #1
  81.       !!                  !! 2 =    "     2
  82.       !!                                  !! 4 =    "     3
  83.       !!                  !! 8 =    "     4
  84.       !!                  !!16 = OTHER
  85.       !!                  !!32 = NO RECORD
  86. ------!!----------------------------------!!--------------------------
  87.  8    !! state                  !! 0 = NT
  88.       !!                   !! 1 = ACT
  89.       !!                  !! 2 = NSW
  90.       !!                  !! 3 = VIC
  91.       !!                  !! 4 = QLD
  92.       !!                  !! 5 = SA
  93.       !!                  !! 6 = WA
  94.       !!                  !! 7 = TAS
  95. ======================================================================
  96.  
  97. You can set it all up to suit yourself and your own operation
  98.  
  99. On the disk are two 'program' files.
  100.  
  101. ADDR.BAS is the actual program with practically NO COMMENTS -
  102.       it would be too big for memory if I left them in!!
  103.  
  104. ADDR.DOC is just REM lines with comments describing VERY
  105.       BRIEFLY what each line or routine is about.
  106.  
  107. LLIST both files from MBASIC. Then lay them out on the floor or a
  108. large table so that the lines in each listing match side by side.
  109. You will then be able to see the code that the comments are
  110. describing.
  111.  
  112. My apologies to those of you who really need more documentation
  113. on this program. Its really meant to teach you something, so
  114. more docs would tend to defeat that purpose. If you read up the
  115. 7 or 8 articles (in the STING) from last year (1985) on LEARNING
  116. MICROSOFT BASIC, you will get quite a bit more detail on some
  117. of the routines. You will also notice that the program in those
  118. articles started out to be somewhat different than what is here.
  119.  
  120. My further apologies to those of you who were following those
  121. articles. I don't envisage re-starting or taking up where I
  122. left off. This program and files is about the lot you'll get.
  123. I stopped because I became ill, and  now 9 months later,, I'm
  124. still not fully recovered.
  125.  
  126. Try the program. Use it for a while. Make changes to suit your
  127. own requirements.
  128.  
  129. When you've used it for a while, I'll be happy to discuss it
  130. with you either individually or in groups. In the meantime,
  131. have fun with it, and learn!
  132.  
  133.             John Dowdall.
  134.             -------------
  135.  
  136.  
  137.