home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / rquery2.zip / RQUERY.DOC < prev    next >
Text File  |  1990-06-14  |  7KB  |  265 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                                    RQUERY
  8.  
  9.                  Copyright (C) SOFT-TECH OFFICE SYSTEMS 1990
  10.  
  11.                            342 MEADOWRIDGE DRIVE
  12.                             RIDGELAND, MS 39157
  13.  
  14.                              FAX: 601-856-8361
  15.  
  16.        REVISED: 6/10/1990
  17.        **NOW ALLOWS YOU TO CHOOSE UP TO 10 COLUMNS IN ANY ORDER AND SET A
  18.        CONDITION TO EACH!    ALSO THE CODELOCKED VERSION TO WORK WITHIN
  19.        EXISTING RBASE APPLICATIONS IS INCLUDED!**
  20.  
  21.  
  22.        LEARNING TO USE RQUERY
  23.  
  24.        The best way to learn how to use RQUERY (or any product)
  25.        is to use it.
  26.  
  27.        This guide is not intended as a detailed manual.  The program is
  28.        basically self explanatory.  This stand alone program works only
  29.        with databases created by Microrim's Rbase.
  30.  
  31.        To operate the program you must have all of the files listed below,
  32.        except this RQUERY.DOC, FORM.TXT and the RQUERY.APX file, in the
  33.        directory where the RBF files are located.
  34.  
  35.             See "CODELOCK VERSION".
  36.        file
  37.        The program creates a temporary file called "RQUERY.DAT" to store
  38.        your query, then erases it.  Therefore do not have any other file
  39.        by that name in the current directory.
  40.  
  41.  
  42.  
  43.        BROWSE   COM
  44.        QUERY    EXE
  45.        RQUERY   OVL
  46.        RQUERY   OBJ
  47.        RQUE$0   OBJ
  48.        RQUERY   MSG
  49.        RQUERY   LNK
  50.        RQUERY   MAP
  51.        RQUERY   DOC
  52.        FORM     TXT
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.        After starting the program, you will be given a list of all Rbase
  74.        databases in the current directory.  Simply highlight the one you
  75.        wish to use and press ENTER.  You will then be offered a list of
  76.        all the existing tables in the current open database.  Highlight
  77.        your choice and press ENTER.  You will then be shown all of the
  78.        columns in the chosen table.  You may choose to use all by pressing
  79.        ESC or you may choose up to 10 in any order you wish to view by
  80.        highlighting each in turn.  You will then go to the Sort screen.
  81.        Once again you will be shown all of the columns in the current
  82.        table.  You must choose at "LEAST ONE".  After choosing a sort
  83.        column you can then choose "Ascending" or Descending".  You can
  84.        have up to 3 sorts.  If you wish fewer than three, press ESC to go
  85.        to the next screen after choosing at least one.
  86.  
  87.        You will now go to the conditions screen.  Once again you will be
  88.        able to choose your conditions by highlighting your choice.  When
  89.        you press ENTER you will be given a list of conditions to choose
  90.        from (eg. EQ, GT, CONTAINS, etc.)  After choosing the condition you
  91.        will be prompted, if necessary for input to match the condition
  92.        against.  You must choose at least one condition.  If you wish to
  93.        select everything in your database match any field with EXISTS.
  94.        You may have up to 10 conditions.  After each choice you are
  95.        prompted to choose one of the following: AND, OR, AND NOT, OR NOT,
  96.        (DONE).  Choose DONE when finished with your conditions.
  97.  
  98.        The program will then select the data and present the following
  99.        menu.
  100.  
  101.        +------------ Select Print Routing--------+
  102.        |  SCREEN   PRINTER  NEXT     QUIT        |
  103.        +-----------------------------------------+
  104.  
  105.  
  106.        If you choose SCREEN the report will be presented to the screen
  107.        allowing you to scroll up, down and to either side with the cursor
  108.        control keys, tab key, or the page up and page down keys.  END will
  109.        take you to the bottom of the report and Home will take you back to
  110.        the beginning.  Press ESC and then ENTER to return to the above
  111.        menu.  Choosing PRINTER will print the report to your printer.  It
  112.        uses no printer control commands, so you will have to put your
  113.        printer in condensed print format if you choose more columns than
  114.        will fit on you paper normally.  Choosing Next will return you back
  115.        to the beginning of the program for another custom Query.  Choosing
  116.        QUIT will end the program.
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.                                *************************
  140.                                CODELOCKED BINARY VERSION
  141.                                *************************
  142.  
  143.        The codelocked binary version is designed to be incorporated into
  144.        your own existing applications.  You can then hard code the
  145.        database and the table to use in the query.
  146.  
  147.        All that is necessary is the RQUERY.APX file and the BROWSE.COM
  148.        file.
  149.  
  150.        Simply set the database name to the varible "DBNAME" and the table
  151.        to "TABNAME".  This issue a call to run RQUERY in RQUERY.APX.
  152.  
  153.        Do not have any of the following varibles active at the time or
  154.        they will be cleared.
  155.  
  156.  
  157.        *(SET UP VARIABLES TO BE USED IN RQUERY)
  158.        err, cols1, cols2, cols3, cols4, cols5, cols6, cols7, cols8, cols9,
  159.        cols10, sort1, sort2, sort3, cond1, cond2, cond3, cond4, cond5,
  160.        cond6, cond7, cond8, cond9, cond10, opr1, opr2, opr3, opr4, opr5,
  161.        opr6, opr7, opr8, opr9, opr10, val1, val2, val3, val4, val5, val6,
  162.        val7, val8, val9, val10, colc1, colc2, colc3, colc4, colc5, colc6,
  163.        colc7, colc8, colc9, colc10, dir1, dir2, dir3, vars, tabnm,
  164.        sortcls, wherecls, numrows, sortcls
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205. DISTRIBUTION AND REGISTRATION
  206.  
  207.    As you know software copyright violation is rampant. This is
  208. why we have created RQUERY. RQUERY allows access to codelocked and
  209. compiled RBASE applications without the need of purchasing a copy of
  210. RBASE to do custom lookups and reports.  Rquery is availabel for
  211. distribution, there will be no need to pirate copyrighted software to
  212. obtain access to ones own database.
  213. Please feel free to give RQUERY to you friends. We
  214. are counting on you as a participant in the largest distribution
  215. network in the nation (the owners and users of PCs) to make
  216. RQUERY a popular product. With strong user support,
  217. RQUERY will be enhanced with new features and capabilities
  218. making it more powerful.
  219.  
  220.    For twenty (20) dollars you can become a registered owner of
  221. RQUERY. For your $20.00 you will appease your conscience
  222. about using unregistered software, receive notice of updates,
  223. and a copy of the latest version of RQUERY.
  224.  
  225. The file FORM.TXT can be used as an order form.
  226.  
  227.  
  228.  
  229.  
  230.  
  231.               SEND A CHECK TO:
  232.  
  233.  
  234.  
  235.                  Soft-Tech Office Sustems
  236.                  342 Meadow Ridge Dr.
  237.                  Ridgeland, MS  39157
  238.  
  239.  
  240.                We thank you for your support.
  241.  
  242. 
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.