home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / bbs / pcbupdn.arc / PCBUPDN.DOC < prev   
Encoding:
Text File  |  1990-01-26  |  3.1 KB  |  94 lines

  1.                      PCBUpDn.Com, Version 0.1
  2.                     P. L. Olympia, Darwin BBS
  3.                             01/24/90
  4.  
  5.  
  6. What is it?
  7. ~~~~~~~~~~~
  8. PCBUpDn is a PCBoard utility program that reads Download.Txt (a log of
  9. PCBoard upload/download activity) and creates (or appends to) a dBASE
  10. III-compatible .dbf/.dbt file sorted by user name.  Then, it creates
  11. a text file showing the contents of the database file in a format like
  12. this:
  13.  
  14.  
  15. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  16. AMECHE, DON           Last on 10/21/89  Uplds =     0  Dnlds =     3
  17.   Dnloads
  18.   -------
  19.     LIST70A.ZIP    10/21/89  08:35
  20.     DDJ1189.ZIP    10/21/89  08:42
  21.     VOL8N19.ZIP    10/21/89  08:51
  22. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  23. ANKA, PAUL            Last on 10/18/89  Uplds =     2  Dnlds =     3
  24.   Uploads
  25.   -------
  26.     GRAB54.EXE     10/15/89  20:47
  27.     LIST70A.ZIP    10/18/89  19:09
  28.   Dnloads
  29.   -------
  30.     RTM101.ZIP     10/15/89  20:29
  31.     SHEZ481.ZIP    10/15/89  20:59
  32.     JADU13.ZIP     10/18/89  19:16
  33. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34.  
  35. Here is the structure of the data file it creates:
  36.  
  37. Structure for database : PCBUPDN.DBF
  38. Number of data records : 630
  39. Date of last update    : 1/22/90
  40. Field  Field Name  Type       Width    Dec
  41.     1  NAME        Character     20     (Lastname, Firstname)
  42.     2  LASTON      Date           8       
  43.     3  NUMUPLD     Numeric        5       
  44.     4  NUMDNLD     Numeric        5       
  45.     5  UPLD        Memo          10       
  46.     6  DNLD        Memo          10       
  47. ** Total **                      59
  48.  
  49.  
  50. For you dBASE enthusiasts, the Memo fields Upld and Dnld contain the
  51. file activity of each user. This is the data file used to generate
  52. the report.
  53.  
  54.  
  55. How to Use
  56. ~~~~~~~~~~
  57.  
  58. Syntax:         PCBUpDn [<name of Download.txt file>]
  59.  
  60.                 where name may include a path. If you invoke the program
  61.                 without a filename, it will look for DOWNLOAD.TXT in the
  62.                 default subdirectory.
  63.  
  64. Examples:       1) PCBUpDn d:\pcb\download.txt
  65.                 2) PCBUpDn
  66.  
  67.  
  68. Files Used or Created
  69. ~~~~~~~~~~~~~~~~~~~~~
  70.    PCBUpDn.Dbf  --  the dBASE III-compatible database
  71.    PCBUpDn.Dbt  --   dBASE III-compatible memo field file
  72.    PCBUpDn.Fdx  --  Index file (may be deleted after the run)
  73.    PCBUpDn.Txt  --  The report file shown above.
  74.  
  75.    The program will create any file it needs if it can't find them.
  76.    All files will be written in the default directory.
  77.  
  78.    Note: Due to the inefficient way that dBASE III & compatibles
  79.    handle memo fields, this program would need a very large amount
  80.    of scratch space, sometimes 10 times the size of Download.txt.
  81.    This may or may not be fixed in the next release (if ever).
  82.  
  83.  
  84. Notes
  85. ~~~~~
  86.    The program was written in Force, the compiler that was born when
  87.    C and dBASE got married.  Force is marketed by Sophco of Boulder, CO.
  88.  
  89.    If you have any suggestions for improving the program, leave a
  90.    message on my BBS, 301-251-9206, Hayes V.42.
  91.  
  92.  
  93.  
  94.