home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / COLORS.ZIP / COLOR.DOC next >
Encoding:
Text File  |  1988-08-19  |  4.8 KB  |  124 lines

  1.          ╓────┐   ╓────╖    ╥         ╓────╖    ╓────╖    ╓────╖  TM
  2.          ║    ┴   ║    ║    ║         ║    ║    ║    ║    ║    ╨
  3.          ║        ║    ║    ║         ║    ║    ╟───┬╜    ╙────╖
  4.          ║    ╥   ║    ║    ║    ┬    ║    ║    ║   │     ╥    ║
  5.          ╙────╜   ╙────╜    ╙────┘    ╙────╜    ╨   ┴     ╙────╜
  6.          ═══════════════════════════════════════════════════════
  7.  
  8.             A color design program for Clipper and dBASE III
  9.  
  10.                                  BY
  11.                             James D. Moore
  12.                            SofA Technologies
  13.                           153 Franklin Street
  14.                          Bloomfield, NJ  07003
  15.  
  16.                          Voice- (201) 743-1744
  17.  
  18.  
  19.    DISCLAIMER:
  20.  
  21.          This program has been tested on most types of MS DOS
  22.          compatable machines without compatability problems,
  23.          However the authore disclaims any warranty either expressed
  24.          or implied for this product.. Neither will the auther assume
  25.          any liability for damage either from direct use or as a
  26.          consequence of the use of this product.
  27.  
  28.  
  29.          Clipper is a trademark of Nantucket Corporation, dBASE, and
  30.          dBASE III are trademark of Ashton Tate.
  31.  
  32.          This product is offerred on the shareware concept.  If you
  33.          use this product on a regular basis, would like the
  34.          source code to modify to fit you own needs, or would like to
  35.          receive information on updates please send a check or money
  36.          order for $9.95 plus $1.75 for shipping to:
  37.  
  38.                             James D. Moore
  39.                            SofA Technologies
  40.                           153 Franklin Street
  41.                          Bloomfield, NJ  07003
  42.  
  43.  
  44.    DESCRIPTION:
  45.  
  46.          Colors is a self contained program that will allow you to see
  47.       color schemes before you decide to use them in your application.
  48.       It creates and uses three files other than color.exe.  The most
  49.       important of which is color.txt.  COLOR.txt is program code that
  50.       can be imported directly to you current applications. The lines
  51.       contained in that file create memory variables that can be used
  52.       with the 'SET COLOR TO ' command.
  53.  
  54.  
  55.  
  56.  
  57.    USEAGE:
  58.  
  59.          To get started the only file that is required is COLOR.exe.
  60.       This file will, on initial startup create COLOR.dbf and
  61.       COLOR.ntx, after your first color save it will create COLOR.txt.
  62.  
  63.          After the startup screen a menu will prompt you for the
  64.       choice of colors that you will want for your menus.  If you are
  65.       a dBASE or Clipper A86 user you can ignore think of the
  66.       designation SELECTED COLOR as ENHANCED COLOR and ignore the
  67.       UNSELECTED COLOR altogether, as these only pertain to Clipper S87.
  68.       To change a color, select the appropriate selection with the
  69.       cursor keys and press ─┘.  Increment of decrement the color
  70.       with the + and - keys, and press Esc. when you are satisfied
  71.       with your selection.  In order to save a color choose the WRITE
  72.       selection.  When you make this choice you will be prompted for a
  73.       name for the color.  This is the name of the memory variable
  74.       that will contain the selected color.  Case is insignificant,
  75.       and if you choos a duplicate name for a color you have
  76.       previously created it will be overwritten.  Once you have
  77.       created all the colors you need just 'QUIT' the program. and it
  78.       just gets easier from here.
  79.  
  80.  
  81.    USING COLOR.txt IN YOUR APPLICATIONS:
  82.  
  83.       FOR SUMMER '87 USERS
  84.  
  85.          The file Color.txt can be incorporated directely without any
  86.       modification.  Just use your current editor to read the file
  87.       into your application.  Place the color variable were they are
  88.       needed, and whenever you need that color use the following
  89.       command:
  90.  
  91.             SET COLOR TO (<expC>)
  92.  
  93.                Where <expC> is the name of the color variable.
  94.  
  95.  
  96.       FOR dBASE III AND OTHERS
  97.  
  98.          Sorry but with this release you guys have to make one slight
  99.       modification to the txt file.  To see what you have to do take a
  100.       look at the following example.
  101.  
  102.       This is what the .txt file looks like:
  103.  
  104.    C_MAIN  = " W+/B ,  B/W ,N , ,  W/B "  && With a comment out here that
  105.    FIRST   = "  W/N ,  N/W ,W , , W+/N "  && would indicate colors like below
  106.  
  107.                            WHITE/BLACK,BLACK/WHITE,WHITE, ,INT WHITE/BLACK
  108.  
  109.  
  110.  
  111.  
  112.       All you have to do to make it useable is remove the part of the
  113.       variable that are in brackets below:
  114.  
  115.    C_MAIN  = " W+/B ,  B/W ,N [, ,  W/B ]"  && With a comment out here that
  116.    FIRST   = "  W/N ,  N/W ,W [, , W+/N ]"  && would indicate colors like below
  117.  
  118.       Thats all you've got to do, and then you can use the color in
  119.       the same maner as indicated above.
  120.  
  121.  
  122.  
  123.  
  124.