home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / HD / HD002A.ZIP / MOVIES.DOC < prev    next >
Text File  |  1988-01-16  |  5KB  |  125 lines

  1.                        Eric Balkan
  2.                        Packet Press
  3.                        14704 Seneca Castle Ct.
  4.                        Gaithersburg, MD 20878
  5.  
  6.  
  7.  
  8. Operating instructions for MOVIES
  9.  
  10.    MOVIES is a utility program specifically designed for
  11. doing simple name searches on The Movie Database.  Here are
  12. some examples of its use:
  13.  
  14. A>movies
  15.  Search request #1 (e.g. Winger and Nolte) (Null line to stop):
  16. Lou Gossett Jr
  17.      - lists all movies with Lou Gossett, Jr. in the cast
  18.  
  19.  Search request #2 (Null line to stop):
  20. Gossett
  21.      - same as above
  22.  
  23.  Search request #3 (Null line to stop):
  24. Winger and Nolte
  25.      - finds the movie starring (Debra) Winger and (Nick) Nolte
  26.  
  27.  Search request #4 (Null line to stop):
  28. MacLaine or McLaine
  29.      - useful when not sure of spelling; the same effect could be
  30.        obtained by using MacLaine in one search set and McLaine
  31.        in the next.
  32.  
  33.  Search request #5 (e.g. Winger and Nolte) (Null line to stop):
  34. Pink Panther
  35.      - finds all movies with Pink Panther in the title
  36.  
  37.  Search request #6 (e.g. Winger and Nolte) (Null line to stop):
  38. (Aust.)
  39.      - finds all Australian movies
  40.  
  41.  Search request #7
  42.  
  43.      - an ENTER by itself ends the input
  44.  
  45.  
  46.     Note that each search request (i.e.  each line of search criteria) is
  47. independent.  Each movie entry that matches a particular search will be
  48. saved in memory.  After the entire database has been examined, you will
  49. have the opportunity to separately review all of the movies that have
  50. matched each search.
  51.  
  52.     Note also that the program is not case-sensitive; it treats upper and
  53. lower case as the same.
  54.  
  55.     Up to 15 searches may be requested.
  56.  
  57.     Please note that this program is quite simple-minded.  If the second
  58. term in a search statement is AND or OR, then the first and third terms
  59. are used as search arguments.  If AND/OR is not found, then
  60. the entire string is used as a search argument.  In other words:
  61.  
  62. ILLEGAL:      Debra Winger and Nick Nolte
  63.  
  64. LEGAL:          Keaton and Allen
  65.          to find all Diane Keaton and Woody Allen movies.
  66.          (Also finds all Diane Keaton and Karen Allen movies.
  67.  
  68.     There is no "wild card" capability.
  69.  
  70. ILLEGAL:     D:xxLester
  71.  
  72. LEGAL:         D:Richard Lester
  73.         or
  74.          Richard Lester
  75.         or
  76.          Lester
  77.            (though this last one will probably show more movies than
  78.         you'd intended)
  79.  
  80.  
  81. Installation Instructions
  82.  
  83.     Copy all files into a subdirectory on your hard disk or a 3 1/2 "floppy".
  84.  
  85.     If you have only 2-5 1/4" disks, make backup copies of the
  86. distribution disks.  (Before running MOVIES each time, you'll need to key in:
  87.     SET DIRS=A:;B:
  88. at the DOS prompt.
  89.  
  90.     That's all you need do to install The Movie Database.
  91.  
  92.     For those interested, the DOS SET command with a DIRS parameter tells
  93. MOVIES what drives or directories to search.  For instance:
  94.       C> set DIRS=C:\dir1;c:\dir2;.;d:\
  95. Each directory name is separated by a semi-colon (;).  A period means
  96. to search the current directory, whatever that happens to be.  The word
  97. DIRS is used only by SFIND; otherwise the syntax is mostly similar to that
  98. of the DOS PATH command.  (The SET command allows an easy way for users to
  99. tell programs about things that don't change very often.)  If you want to
  100. get rid of directories that have been previously specified, just key in:
  101.          set DIRS=
  102.     With no directories specified, SFIND will only search one directory --
  103. the one implied or specified with the filename.
  104.  
  105.  
  106.  
  107. Principles of Operation
  108.  
  109.     The program starts with the first entry in the current disk directory
  110. (unless DIRS has been set).  For each filename that consists of
  111. two-letters, the file is opened and searched.  As each movie record is
  112. processed, the information for each movie is built into a single field for
  113. search purposes.  Matches are then done on character strings within this
  114. entire field.  When a match is found, the entire entry for the movie is
  115. displayed on the screen.  As each file is searched, the name of the file
  116. will also be displayed.  There is a limit of 200 hits for any one search
  117. request and about 500 hits for all search requests.  A typical search will
  118. take about 2 minutes on an XT.
  119.  
  120. Note:  This program will operate with any free-form text files whose records
  121. are separated by two dots (..), with no record larger than 1000 bytes, whose
  122. filenames consist of 2 letters, and where no file is larger than 24K bytes.
  123. If you need something more flexible or something customized to your needs, let
  124. me know -- I can probably whip up something.
  125.