home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / dbfu13.zip / DBFU.DOC next >
Text File  |  1990-04-28  |  4KB  |  107 lines

  1.  
  2. **** DBFU ****       (c) 1989 1990  Anzam Software     Author: Brian Cleverly
  3.  
  4.     A Utility for Displaying dBASE III, III+, IV, FoxBase V2.x, FoxPRO and
  5.     Clipper DBF file structures.
  6.  
  7.     Written in C.... Using window functions from CWindows Toolkit by
  8.                      Magna Carta Software.
  9.                      Compiled with PowerC by Mix Software.
  10.  
  11. The DBFU program and this documentation may be used, copied and
  12. shared without fee subject to the following conditions:
  13.  
  14.         - You may not sell or distribute these materials for profit.
  15.         - These materials are provided on an "as is" basis.
  16.         - No warranty is expressed or implied.
  17.         - The author assumes no responsibility for any damages, whether
  18.           real or imagined, that may occur as a result of using these
  19.           materials.
  20.         - The author will attempt to answer any written questions
  21.           concerning these materials.
  22.  
  23. If you use these materials and find them useful, a $10 contribution would
  24. be gratefully accepted by:
  25.  
  26.         Brian Cleverly
  27.         Anzam Software
  28.         4520 Robertson Ave.
  29.         Sacramento,  CA  95821
  30.  
  31. Suggestions for enhancements are welcomed.
  32.                              ______________
  33.  
  34. Description:
  35.  
  36.         DBFU (DeeBeeFoo) is a utility to display the structure of dBASE III,
  37. III+, IV, FoxBASE 2.x, FoxPRO (added 12/29/89) & Clipper DBF files.
  38.  
  39.         The field name, type, length and decimals are displayed in a
  40. scrolling window.  (For all the CLIPPER folks --- the max number of fields
  41.                     that are displayed is 1,000)
  42.  
  43.         The file name, size, number of records, creation date,
  44. number of fields and whether a memo file is attached are displayed in
  45. a stats window.
  46.  
  47.         The file flavour is displayed as:
  48.               dB3 Type      --- dB3,FoxBase,Foxpro,Clipper - plain file.
  49.               dB3 & Memo    --- dB3,FoxBase with memo file.
  50.               dBIV & Memo   --- dBIV with memo file.
  51.               FoxPRO+memo   --- FoxPRO with memo file.
  52.  
  53.         The structure can be printed to hard copy.
  54.  
  55.         The structure can be copied to another DBF file.
  56.             *** NOTE *** If the original DBF has a MEMO file,
  57.                             a NEW MEMO file IS ALSO CREATED.
  58.                              (added V1.1  11/10/89)
  59.                              (foxpro added V1.2 12/29/89)
  60.  
  61.         Other DBF's can be called from within DBFU, either by name
  62. (using full DOS path support) or from a sorted scrolling picklist of DBF's
  63. on the current drive/directory.
  64.  
  65.         Error messages are provide for Out_of_memory, File_not_found,
  66. Duplicate_file_name, Invalid_file_type etc.
  67.  
  68.         DBFU requires MS-DOS or PC-DOS 2.x or later.
  69.  
  70.         DBFU supports color or monochrome monitors.
  71.  
  72.         DBFU is initially run from the DOS prompt.
  73.  
  74.                               __________
  75.  
  76. Usage Summary:
  77.  
  78.    from dos prompt:
  79.  
  80.         DBFU [drive:][\path\]filename[.ext]
  81.                 where [..] indicates optional items.
  82.                 A ".DBF" extension is assumed but DBFU will act on
  83.                 any entered extension.
  84.  
  85.                              ________________
  86.  
  87. Usage Examples:
  88.  
  89.   from dos prompt:
  90.  
  91.         DBFU                       :: list usage message.
  92.  
  93.         DBFU TESTFILE              :: shows structure of TESTFILE.DBF if
  94.                                       located on current directory.
  95.  
  96.         DBFU \dbdata\testfile.dat  :: shows structure of TESTFILE.DAT
  97.                                       located in dbdata directory.
  98.  
  99. within DBFU:
  100.  
  101.         F1               :: prints currently displayed structure.
  102.         F2               :: asks for new file name. (supports DOS path)
  103.         F2 then '?'      :: displays picklist of DBF's on current directory.
  104.         F3               :: asks for filename to copy structure to.
  105.                             (supports DOS path)
  106.  
  107.