home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / CLDOT.ZIP / CLDOT.DOC next >
Encoding:
Text File  |  1988-01-07  |  8.2 KB  |  248 lines

  1.  
  2.  
  3.                              CLdot version 1.0
  4.  
  5.      CLdot is an interactive dot prompt mode for Dbase and Clipper
  6.      databases. At this time CLdot v1.0 is being offered as "Freeware"
  7.      which means that you do not have to pay for it. You are both
  8.      allowed and encouraged to copy and distribute this program to
  9.      friends, co-workers and bulletin boards as long as there is no
  10.      charge involved and all accompanying documentation is intact.
  11.  
  12.      If after using CLdot you find it useful, you may wish to become a
  13.      registered user of CLdot. Registration assures the author that
  14.      people find his program useful and wish to compensate him for the
  15.      long hours spent developing it. It also assures the user that the
  16.      author will maintain and enhance his product. A registration fee
  17.      of $30 is suggested, but any amount will be appreciated. All
  18.      registered users will receive notification of enhancements and
  19.      upgrades, along with free product support for one year.
  20.      Additional support may be purchased later at the rate of $10 per
  21.      year. To register, send your Name, address, company, city , state
  22.      and zip code along with your donation to :
  23.  
  24.                             Randolph P. Schmidt
  25.                             1001 Mayflower #50
  26.                            South Bend, IN  46619
  27.  
  28.      I have been using and modifying CLdot for about 6 months now and
  29.      have found it to be pretty well bug free. The few bugs that I am
  30.      aware of tend to be mostly with memo fields and should be
  31.      corrected in my next release. Because it is not 100% error free,
  32.      I will try to correct any bugs brought to my attention by anyone,
  33.      registered or not. I will not, however, be held responsible for any
  34.      damages that may occur from the use of CLdot.
  35.  
  36.      ** Note - Although Both Dbase and Clipper databases are
  37.      supported, only the Clipper NTX index files may be used.
  38.  
  39.      Dbase is a trademark of Ashton-Tate, Inc.
  40.      Clipper is a trademark of Nantucket Corp.
  41.  
  42.  
  43.                               CLdot commands
  44.  
  45.      ..... = .....
  46.           The equal sign allows you to set up variables. For example
  47.           to set up a variable named X and give it a value of 5, type
  48.           X = 5.
  49.  
  50.      ? .....
  51.           Displays ..... on the screen.
  52.  
  53.      @ x,y GET .....
  54.           Get allows you to interactively change a database field. x
  55.           and  y are screen coordinates. To change a field called name
  56.           on line 6 starting in row 10 type: @ 6,10 GET Name.
  57.  
  58.  
  59.  
  60.      @ x,y SAY .....
  61.           Same as @ Get except that fields are display only and cannot
  62.           be updated.
  63.  
  64.      APPEND BLANK
  65.           Adds a blank record to the end of the current database.
  66.  
  67.      APPEND FROM ..... <SDF>
  68.           Appends records to the current data base from ..... The SDF
  69.           option is used if the ..... file is a text file.
  70.  
  71.      BROWSE
  72.           Browse lets you look at all of the current databases records
  73.           in table format. Browse supports field lengths over 80
  74.           characters along with memo fields.
  75.  
  76.      CD
  77.           DOS change directory command to view which directory you are
  78.           currently in type CD. To change directories type CD\.....
  79.  
  80.      CLEAR
  81.           Clears the Screen.
  82.  
  83.      CLEAR ALL
  84.           Closes all databases and indexes and clears all memory
  85.           variables.
  86.  
  87.      CLEAR MEMORY
  88.           Clears all memory variables.
  89.  
  90.      CLOSE DATABASES
  91.           Closes all open databases.
  92.  
  93.      CLOSE INDEX
  94.           Closes all open index files.
  95.  
  96.      CLS
  97.           Clears the screen.
  98.  
  99.      CONTINUE
  100.           Go to the next record that meets the criteria of the
  101.           previously entered LOCATE command.
  102.  
  103.      COPY TO ..... <SDF> <STRU EXTE>
  104.           With the SDF option the current database is copied to .....
  105.           in text file format.
  106.  
  107.           With the STRUCTURE EXTENDED option a new database is created
  108.           with the field names of the current database becoming
  109.           records in the new database.
  110.  
  111.  
  112.  
  113.  
  114.      CREATE .....
  115.           Allows you to define your own database structure.
  116.  
  117.      CREATE ..... FROM .....
  118.           Creates a database ..... from the STRUCTURE EXTENDED
  119.           database .....
  120.  
  121.      DELETE
  122.           Marks the current record for deletion. The record can be
  123.           permanently removed with a PACK command or brought back with
  124.           the RECALL command.
  125.  
  126.      DISP STRU
  127.           Displays the structure of the current database on the
  128.           screen.
  129.      
  130.      DTDIR .....
  131.           DTDIR lets you display a directory of only files that fall
  132.           between two dates. For example typing DTDIR *.exe will prompt
  133.           you for a beginning and ending date. All .exe files created
  134.           between those two dates will be displayed.
  135.           ** NOTE: DTDIR.CLD must be in the current subdirectory for
  136.           DTDIR to work.
  137.      
  138.      EDIT
  139.           Edit allows you to view and change one record at a time.
  140.           Field lengths over 80 are supported along with memo fields.
  141.      
  142.      EJECT
  143.           Moves paper in printer to top of form.
  144.      
  145.      FLOCK()
  146.           Issues a file lock command.
  147.      
  148.      GO <recno> <BOTTOM> <TOP>
  149.           Repositions the record pointer to the specified record.
  150.      
  151.      INDEX ON ..... TO .....
  152.           Builds a Clipper compatible index file.
  153.      
  154.      LIST .....
  155.           Lists the specified field on the screen for all records.
  156.      
  157.      LIST STRU TO PRINT
  158.           List the structure of the current database to the printer.
  159.      
  160.      LOCATE FOR .....
  161.           Finds the first record that meets the specified criteria.
  162.      
  163.      MODI STRU
  164.           Lets you add, delete, or change fields in the current
  165.           database.
  166.  
  167.      
  168.      
  169.      PACK
  170.           Permanently removes records marked for deletion.
  171.      
  172.      QUIT
  173.           Closes all open files and returns to DOS.
  174.      
  175.      RECALL
  176.           Brings back records that were marked for deletion.
  177.      
  178.      REINDEX
  179.           Rebuilds the current index file.
  180.      
  181.      REPLACE <ALL> ..... WITH .....
  182.            Replaces ..... with ..... for the current record. If the
  183.            ALL option is used the replace affects all records.
  184.  
  185.      RLOCK()
  186.           Issues a record lock.
  187.      
  188.      RUN .....
  189.           Allows execution of DOS commands.
  190.      
  191.      SEEK .....
  192.           Goes to the first record that meets the entered criteria.
  193.           ** NOTE: The database must be indexed for a SEEK.
  194.      
  195.      SELECT n
  196.           CLdot allows up to five databases to be opened at the same
  197.           time.
  198.      
  199.      SET DEFAULT TO .....
  200.           Sets the default drive.
  201.      
  202.      SET DELETED <ON> <OFF>
  203.           Set deleted tells whether to recognize records marked for
  204.           deletion. ON - deleted records will not be recognized.
  205.                     OFF - deleted records will be recognized.
  206.      
  207.      SET EXCLUSIVE <ON> <OFF>
  208.           Set exclusive tells whether you have exclusive or shared use
  209.           of all your databases. ON - exclusive use.
  210.                                  OFF - shared use.
  211.      
  212.      SET INDEX TO .....
  213.           Allows the use of the specified index file with the current
  214.           database.
  215.      
  216.      SET PATH TO .....
  217.           Sets the search path.
  218.  
  219.      
  220.      
  221.      SKIP
  222.           Moves the record pointer to the next record.
  223.      
  224.      UNLOCK
  225.           Unlocks any record or file locks currently in use in the
  226.           current database.
  227.  
  228.      UNLOCK ALL
  229.           Unlocks all record or file locks currently in use.
  230.      
  231.      USE ... <INDEX .....> <EXCLUSIVE>
  232.           Sets the ..... database to be current. If the index option
  233.           is used the specified index is also set current. If the
  234.           EXCLUSIVE option is used, the database will be used
  235.           exclusive.
  236.      
  237.      ZAP
  238.          Erases all records from the currently active database.
  239.      
  240.      
  241.      Along with these commands your last 10 dot prompt commands are
  242.      available through the use of the PgUp and PgDn keys.
  243.      
  244.      If you find any problems or have any suggestions, please let me
  245.      know.
  246.      
  247.  
  248.