home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 September / C_BUYER.ISO / dosshare / colwiz / readme.txt < prev    next >
Text File  |  1995-04-01  |  8KB  |  158 lines

  1.                                THE COLOR WIZARD
  2.                                   Version 1.2
  3.                                  April 1, 1995
  4.  
  5.                               Copyright (c) 1995
  6.                                 ImagiSOFT, Inc.
  7.                              All rights reserved.
  8.  
  9.  
  10.                                SHAREWARE VERSION
  11.  
  12.     The  Color  Wizard  is  a  commercial  software  product  marketed   as
  13.     shareware.   It is NOT FREE, nor is it in the public domain.   You  may
  14.     freely  copy  the Color Wizard and GIVE copies of the color  wizard  to
  15.     others, and may charge a distribution fee subject to the provisions  of
  16.     VENDOR.DOC.   To obtain the latest shareware version use your modem  to
  17.     call our BBS:  (505) 275-9696, or send $3.00 (plus $4.00 s&h) to:
  18.  
  19.                                 ImagiSOFT, Inc.
  20.                                  PO Box 13208
  21.                          Albuquerque, NM   87192-3208
  22.  
  23.                            (800) 767-1978   Orders
  24.                            (505) 275-1920   Support
  25.                            (505) 275-9697   fax
  26.  
  27.  
  28.     Users of the Color Wizard must accept this disclaimer of warranty:
  29.  
  30.     THE  COLOR  WIZARD  IS PROVIDED AS IS, WITHOUT WARRANTY  OF  ANY  KIND,
  31.     EXPRESS  OR  IMPLIED,  INCLUDING,  BUT  NOT  LIMITED  TO  THE   IMPLIED
  32.     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
  33.     ENTIRE  RISK AS TO THE QUALITY AND PERFORMANCE IS WITH YOU.   IMAGISOFT
  34.     ASSUMES  NO LIABILITY FOR DAMAGES, DIRECT OR CONSEQUENTIAL,  WHICH  MAY
  35.     RESULT FROM THE USE OF THE COLOR WIZARD.
  36.  
  37.  
  38.                             WHAT'S NEW: VERSION 1.2
  39.  
  40.     COLOR PRINTER SUPPORT
  41.     ~~~~~~~~~~~~~~~~~~~~~
  42.     Version  1.0 supported the HP Color DeskJet 500 series of  printers  as
  43.     well as the most common black and white printers.  With version 1.1  we
  44.     added the Cannon BubbleJet 600 C (BJC-600) printer and the Epson Stylus
  45.     Color printer (widely advertized as being able to produce 760 DPI).
  46.  
  47.     If you do have a color printer but it is not an Epson, Hewlett Packard,
  48.     or  BubbleJet,  try the "Epson Color" selection on the  printers  menu.
  49.     Most color printers are Epson compatible.
  50.  
  51.     SEPARATE MUSIC AND VOICE BUTTONS
  52.     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  53.     Several users would like to turn the background music off, but like  to
  54.     hear the voice after pushing the buttons.  The setup screen allows  you
  55.     to turn either or both of these options off.
  56.  
  57.                               RESOLVING PROBLEMS
  58.  
  59.     "NOT ENOUGH FREE CONVENTIONAL MEMORY"
  60.     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  61.     MS-DOS computers have several types of memory:
  62.  
  63.       - Conventional Memory, the first 640K
  64.       - Upper Memory, the next 384K between 640K and 1 megabyte
  65.       - Extended Memory (XMS), above 1 megabyte (defined using EMM386.EXE)
  66.       - Expanded Memory (EMS), above 1 megabyte (defined using EMM386.EXE)
  67.  
  68.     Conventional  Memory is the most precious -- without it,  few  programs
  69.     can  run -- even if you have eight megabytes of memory!  To  check  how
  70.     much  memory your computer has left, enter the command MEM /C and  look
  71.     for  the column titled Conventional Memory.  If it says you  have  less
  72.     than 550K free, your computer probably is not be configured properly.
  73.  
  74.     DOS 6.0 and DOS 6.2 comes with a utility called MEMMAKER.  Most  people
  75.     can cause the above problem to disappear, and increase their computer's
  76.     performance,  simply  by  entering the command MEMMAKER  from  the  DOS
  77.     prompt.
  78.  
  79.     The primary reason DOS 5.0 (and now DOS 6.2) was so successful was that
  80.     it  provided good memory management, using a utility  called  HIMEM.SYS
  81.     for  286  and 386 computers.  The primary purpose of  HIMEM.SYS  is  to
  82.     "Load High" into upper memory major portions of DOS, and other programs
  83.     when  you turn your computer on.  MEMMAKER makes all these  adjustments
  84.     for you.
  85.  
  86.     If  you don't have MEMMAKER, or if you want to fine tune the  way  your
  87.     computer manages memory yourself, enter the command EDIT CONFIG.SYS  at
  88.     your  DOS  prompt.  If you have a 386 class computer,  your  CONFIG.SYS
  89.     file should look similar to the following:
  90.         buffers=20                      (number can vary)
  91.         files=60                        (number can vary)
  92.         device=c:\dos\himem.sys         (always include this line)
  93.         device=c:\dos\emm386.exe noems  (2 megs+ on 386 or 486 only)
  94.         dos=high,umb             (always include this line (no umb on 286))
  95.  
  96.     All other resident .SYS, .EXE, and .COM programs in this file should be
  97.     preceded  by  devicehigh =  instead of  just  device =.   For  example,
  98.     replace DEVICE = MOUSE.SYS with DEVICEHIGH = MOUSE.SYS.  In most cases,
  99.     following  these  few steps will increase your memory  dramatically  by
  100.     putting these programs in upper memory instead of conventional memory.
  101.  
  102.     After  you  are  done  editing  CONFIG.SYS,  EDIT  AUTOEXEC.BAT.   Your
  103.     AUTOEXEC.BAT file will usually have something similar to the following:
  104.         verify on                       (optional)
  105.         set home = c:\bingo             (optional)
  106.         prompt $p$g                     (could be different)
  107.         path \dos;c:\util               (probably much longer)
  108.         loadhigh \dos\mouse.com         (mouse driver)
  109.  
  110.     Use  the  loadhigh  command  on all resident  .EXE  and  .COM  programs
  111.     in AUTOEXEC.BAT  to  put these programs into upper memory.   For  example,
  112.     instead of loading the mouse into conventional memory with the  command
  113.     \DOS\MOUSE.COM, LOADHIGH \DOS\MOUSE.COM puts the mouse driver in  upper
  114.     memory.
  115.     When you are done making changes to CONFIG.SYS and AUTOEXEC.BAT, reboot
  116.     your computer.  Enter the command MEM /C again, and you should see that
  117.     your  computer has much more conventional memory available.  If  making
  118.     these changes don't help, get help from an expert.
  119.  
  120.  
  121.     "VGA MONITOR REQUIRED"
  122.     ~~~~~~~~~~~~~~~~~~~~~~
  123.     Some  super  VGA  and monocrome VGA cards  are  incompatible  with  our
  124.     software. If you believe that your monitor supports standard VGA  mode,
  125.     enter  WIZARD /M from the DOS prompt.  This command bypasses our  video
  126.     card  checking routine, so one of two things will happen:  the  program
  127.     will work or the computer will freeze at a blank screen.
  128.  
  129.  
  130.     "MOUSE REQUIRED"
  131.     ~~~~~~~~~~~~~~~~
  132.     THE  COLOR  WIZARD  requires a mouse to run.  We are  often  asked  the
  133.     question,  "My  mouse works in Microsoft Windows.  Why does  THE  COLOR
  134.     WIZARD tell me that a mouse is required to run it?"
  135.  
  136.     Microsoft  Windows  has its own, built in mouse driver as part  of  the
  137.     program.   THE  COLOR WIZARD looks for a mouse driver  which  has  been
  138.     loaded  in AUTOEXEC.BAT or CONFIG.SYS when you turn your  computer  on.
  139.     Look at the documentation which came with your mouse for details.
  140.  
  141.  
  142.     SOUND CARD PROBLEMS
  143.     ~~~~~~~~~~~~~~~~~~~
  144.     Most sound cards are Soundblaster compatible.  If your sound card gives
  145.     you problems, enter this command from DOS: WIZARD /C.  This will bypass
  146.     the sound card initialization routine and turn off the sound.
  147.  
  148.  
  149.     PRINTER PORTS
  150.     ~~~~~~~~~~~~~
  151.     Over  99%  of  our users have their printer  attached  to  their  first
  152.     parallel  port,  which  DOS refers to as the  LPT1:  device.   If  your
  153.     printer is attached to LPT1: - LPT3: then enter this command from  DOS:
  154.     WIZARD /1  for LPT1: (Default), WIZARD /2 for LPT2:, or  WIZARD /3  for
  155.     LPT3:.   If your printer is attached to COM1: or other  serial  device,
  156.     redirect  it to LPT1: using the MODE command from DOS.  For details  on
  157.     how to do this see your DOS documentation.
  158.