home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / jargon.zip / JARGON.DOC < prev    next >
Text File  |  1987-03-26  |  5KB  |  125 lines

  1.                             J A R G O N   V 1.0
  2.                         An On-Line Manual for dBASE/CLIPPER
  3.  
  4.  
  5.  
  6.     This program is the DBASE and Clipper manual as a database on a
  7. disk.  The program addresses what is the exact syntax and the
  8. necessary parameters for the "Foo" command, or maybe more valuable
  9. question of What are the character functions -- and which one would
  10. be BEST to solve a program problem.  And lastly, you understand
  11. how the command works, you have used it correctly in your program --
  12. and you just need to know the name of the file/library needed to 
  13. to Link or Load it with your application.
  14.   
  15.     When I saw Mike Leventhal's LINGO database I decided to try to
  16. write an on-line manual and dump the big stack of manuals, books
  17. and prinouts I use now when programming.
  18.  
  19.    Commands/functions can be retrieved by "NAME" or "TYPE" using the
  20. "Home"=NAME key and "End"=TYPE key.  The MOVE keys access the database
  21. in sequence of the last-used key used for retrieval.  The program checks
  22. for the existence of index files, and re-indexes when they don't exist.
  23. So the indexes will be created at startup, and can be re-created by
  24. deleting the JARGON.NTX and TYPE.NTX files.
  25.  
  26.    The Edit/Add commands that change the database signal the user by
  27. changing the color of the fields, and the Add command loops for continual
  28. additions until the NAME field is left blank.
  29.  
  30.    The TYPE field is limited to the following choices by type window :
  31.  
  32.          ARRAYS
  33.          DISK 
  34.          PRINTER
  35.          BUSINESS
  36.          CHARACTER
  37.          MEMO
  38.          SCREEN
  39.          DATABASE
  40.          SYSTEM
  41.          DATE 
  42.          MISC
  43.          TIME
  44.          DEBUG
  45.          NUMERIC
  46.          OPERATOR
  47.          UTILITY
  48.  
  49. The limited choice of types is quite arbitrary but it makes the
  50. TYPE index more valuable in locating unknown commands.
  51. I have concentrated more work on the program than on the data 
  52. in the database. I especially didn't make much of an effort on
  53. dbase which I use very little.  What I really wanted was 
  54. information on special functions and documentation for
  55. the new UDF's that seem to be coming out of the woodwork.  Anyway
  56. most users will probably want to customize their own data and 
  57. examples in ways that will work best for them.
  58.  
  59.    This program is full featured and people who use dbase or clipper
  60. can use it "as-is" if they can work better from a screen than the 
  61. printed page of a manual.  I am a consultant and make my living writing
  62. custom database programs that have much in common with features of
  63. this program.  I would be happy to discuss/bid any of your programming 
  64. projects -- or listen to any suggestions you might have for this program.
  65.  
  66.    The front-end advertisement is ONLY for those people who MUST have
  67. the Clipper-source code, the latest/greatest version of Jargon, and a 
  68. program copy that starts-up in the database without the billboard.
  69. The program should work well from inside dbase by using
  70. .RUN JARGON
  71. and exiting back into dbase.
  72.  
  73. Comments and suggestions are welcome:   Earl E. Bockenfeld
  74.                                         2502 N. Bernard
  75.                                         Chicago, IL 60647
  76.                                         (312) 252-2992
  77.                                         $ 29 Source Disk
  78.                                       + $  3 Shipping
  79.  
  80. -------------------------------------------------------------------------
  81.  
  82.   
  83.  
  84.  
  85. JARGON.ARC consists of 3 files:  2 Index files created on Startup 
  86.       JARGON.DOC -- This file
  87.       JARGON.EXE -- AN On-LINE dBASE/CLIPPER MANUAL
  88.       JARGON.NTX -- NAME Key INDEX of JARGON.DBF-->Generated on Startup
  89.       TYPE.NTX   -- TYPE Key INDEX of JARGON.DBF-->Generated on Startup
  90.       JARGON.DBF -- A database of Commands, Functions
  91.                     with Syntax & examples in:
  92.                       dBASE 
  93.                       CLIPPER
  94.                       TOM RETTIG'S LIBRARY
  95.  
  96. -------------------------------------------------------------------------
  97.  
  98. Structure for database : JARGON.DBF
  99. Number of data records : 413
  100. Date of last update    : 3/24/87
  101. Field  Field Name  Type       Width       FIELD DESCRIPTION        
  102.  
  103.     1  NAME        Character     20   --  NAME of the COMMAND/FUNCTION
  104.     2  TYPE        Character     10   --  TYPE of COMMAND/FUNCTION
  105.     3  DEF         Character     12   --  Class of COMMAND/FUNCTION
  106.     4  SYNTAX      Character     60   --  COMMAND/FUNCTION USAGE
  107.     5  RETURN1     Character     60   --  Result of COMMAND/FUNCTION  
  108.     6  RETURN2     Character     60   --  Result  -->Line2
  109.     7  PURPOSE     Character     60   --  Purpose of COMMAND/FUNCTION
  110.     8  PURPOSE1    Character     60   --  Purpose -->Line 2
  111.     9  EXAMPLE1    Character     60   --  Example Usage of COMMAND/FUNCTION
  112.    10  EXAMPLE2    Character     60   --  Example -->Line 2
  113.    11  EXAMPLE3    Character     60   --  Example -->Line 3
  114.    12  EXAMPLE4    Character     60   --  Example -->Line 4 
  115.    13  EXAMPLE5    Character     60   --  Example -->Line 5
  116.    14  LOCATION    Character     12   --  LIBRARY FILE Name
  117.    15  DB          Character      6   --  DBASE Command
  118.    16  CLIP        Character      6   --  CLIPPER Command
  119.    17  AUTHOR      Character     20   --  AUTHOR
  120.  
  121. ** Total **                     687
  122.  
  123. <eof>--------------------------------------------------------------------
  124.  
  125.