home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / makendx.zip / READ.ME < prev    next >
Text File  |  1988-01-18  |  2KB  |  56 lines

  1. MAKENDX version 1.0                                        14 January 1988
  2.  
  3.     MAKENDX is a program to create dBase III Plus NDX files.  The
  4. DOS command-line is:
  5.     
  6.         C>makendx <filename> <index key> <index type> [index len]
  7.  
  8. where [index len] is optional, if the <index type> is numeric or date
  9. (dBase numeric or date key expressions always have a length of 8).
  10.  
  11.     For example, if FOO is a character field, then:
  12.  
  13.         C>makendx foo len(foo) n
  14.  
  15.     or:
  16.  
  17.         C>makendx foo2 upper(substr(foo,1,5)) c 5
  18.  
  19. Note that the length of a character key expression is NOT the length of
  20. the dBase expression which represents it:  the length of 
  21.  
  22.         upper(substr(foo,1,5))
  23.  
  24. is 5, NOT 22.
  25.  
  26.     A number of people have asked me for MAKENDX, so here it is.  Where
  27. MAKENDX is really useful though, is in the context of my program MAKEDBF,
  28. and, in fact, all the capabilities of MAKENDX (and more) have been built
  29. into the latest version of MAKEDBF.
  30.  
  31.     If you are using FoxBase+, it's true that Fox has its own IDX index
  32. file format, but remember that if Fox encounters an NDX file, it will
  33. automatically convert it to IDX.  For Clipper users, the latest version
  34. comes with NDX.OBJ which, once linked in with your program, allows
  35. you to directly use NDX files in Clipper.
  36.  
  37.     To get the latest set of the dBase utilities MAKEDBF, MAKENDX, MAKEMEM,
  38. and more, including complete C source code, please register with the
  39. author ($20):
  40.  
  41.         Andrew Schulman
  42.         12 Humboldt Street
  43.         Cambridge MA 02140
  44.  
  45. If you are already a registered user of MAKEDBF or MAKEMEM and would
  46. like the very latest versions, an update costs $5.50.
  47.  
  48.     I want to thank Randy Wallin, for pushing me to write MAKENDX, and
  49. Pete Olympia (patron saint of shareware authors), for supplying information
  50. on the NDX file format.
  51.  
  52.     The source code for MAKENDX is supplied with the ARC file.  You 
  53. are free to do anything with it, except make money off it.  
  54.  
  55.  
  56.