home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / busi / pcoutlin.zip / README.1 < prev    next >
Text File  |  1986-02-17  |  6KB  |  125 lines

  1.  
  2.  
  3. February 17, 1986
  4. PC-OUTLINE Version 1.01
  5.  
  6. These are some of the files on this disk:
  7.  
  8. PCO.EXE      - executable file for running PC-OUTLINE
  9. README.1     - the latest notes about PC-OUTLINE not included in the manual
  10. README.2     - descriptions of the utility programs included on the disk
  11. GLOBAL.COM   - utility program #1 (see README.2)
  12. CPY.COM      - utility program #2 (see README.2)
  13. DIRS.COM     - utility program #3 (see README.2)
  14. MOVE.COM     - utility program #4 (see README.2)
  15. MEM.COM      - utility program #5 (see README.2)
  16. BEEP.COM     - utility program #6 (see README.2)
  17. PUSHDIR.COM  - utility program #7 (see README.2)
  18. POPDIR.COM   - utility program #8 (see README.2)
  19. DOC.PRN      - brief documentation in printable form
  20. DOC.PCO      - brief documentation in a PC-OUTLINE file
  21. EPSON.CFG    - the epson printer driver
  22. IBM.CFG      - the ibm printer driver
  23. BLANK.CFG    - a dummy printer driver that will ignore all print codes
  24. PRINTDOC.BAT - a batch file that will print DOC.PRN to LPT1
  25. PCPRINT.COM  - a program for changing printer drivers
  26. KEYSET.COM   - a program for customizing the PC-OUTLINE invoke key
  27. PCOPRN$.CFG  - a printer substitution file for correctly printing graphics
  28.                characters on non-IBM printers.
  29. CREATE.PCO   - an outline describing how to create new outline elements.
  30. MENUS.PCO    - an outline describing how to use the menus.
  31. HIDING.PCO   - an outline describing how to hide and unhide outline
  32.                elements.
  33. MOVE.PCO     - an outline describing how to rearrange outline elements.
  34.  
  35. Last minute notes about PC-OUTLINE:
  36.  
  37. A couple new features have been implemented which are not included in
  38. the manual.
  39.  
  40. 1)   NEW WAY OF SPECIFYING WHERE THE CONFIGURATION FILE IS FOR USE ON
  41.      A HARD DISK:  Instead of using the /l=<configuration file/path
  42.      name> as a command parameter option, you may put the command
  43.      SET PCO=<configuration file/path name> in your autoexec.bat
  44.      file.  PC-OUTLINE will first look in the current directory for
  45.      the configuration file PCO.CFG.  If it is not found there and
  46.      there was no /l=.....  command parameter, then PC-OUTLINE will
  47.      try the file/path set in the environment with the dos SET
  48.      command.  By using this feature, you can start PC-OUTLINE from
  49.      anywhere on your hard disk simply by pathing to the directory
  50.      that contains PCO.EXE.  PC-OUTLINE will do the rest of the work,
  51.      automatically finding its configuration files.
  52.  
  53. 2)   NEW /d COMMAND PARAMETER FOR CONTROLLING THE STARTING CURRENT
  54.      DIRECTORY IN PC-OUTLINE:  The configuration file PCO.CFG
  55.      (created from the ADVANCED CONFIGURATION menu) can contain a
  56.      starting directory.  If it does, then each time PC-OUTLINE
  57.      starts it will automatically start with that directory as the
  58.      current directory for outline files.  If it does not contain a
  59.      starting directory, (the entry in the ADVANCED CONFIGURATION
  60.      menu for starting directory is blank), then PC-OUTLINE will use
  61.      the current DOS directory as its starting directory.  If you set
  62.      a current directory in the above menu because you keep most of
  63.      your outline files in one particular location, but sometimes you
  64.      want to start up PC-OUTLINE with a different directory, then you
  65.      can log to the directory you want and type PCO.EXE /d.  The /d
  66.      will tell PC-OUTLINE to ignore the starting directory set in the
  67.      configuration file and use the DOS current directory.
  68.  
  69. 3)   Although it is not mentioned in the documentation anywhere,
  70.      PC-OUTLINE supports the creation of a printer substitution table
  71.      allowing you to print graphics characters on some printers.  Note:
  72.      Graphics characters will print exactly as seen on the screen on an
  73.      IBM printer.  On epson printers and most other printers, however, you
  74.      must do a little extra work to get some graphics characters to print
  75.      correctly.
  76.  
  77.      For example, if you choose bullet numbering for your outlines, an
  78.      epson printer will not correctly print the bullet.  To fix this,
  79.      create an ascii file named PCOPRN$.CFG and place the following line
  80.      in it (this file exists on the PC-OUTLINE system disk):
  81.  
  82.      char(254)=143
  83.  
  84.      The bullet character on screen is 254 and the epson printer character
  85.      for a bullet is 143.  This command tells PC-OUTLINE that whenever it
  86.      is about to print a character 254, print a 143 instead.  You can
  87.      place as many printer substitutions as you like.  The string to
  88.      substitute can be more than one character if desired.  For example
  89.      you could redefine the tilde character (~) to turn boldface on (for
  90.      an epson printer) by inserting the following line.
  91.  
  92.      char('~')=27,'E'
  93.  
  94.      This would substitute ESC G for every occurence of a tilde character.
  95.  
  96.      Note that there are two ways to insert a value, by placing a
  97.      character in single quotes ('D') or by entering the decimal
  98.      representation for the ascii value of the character (123).  Each
  99.      entry must be separated by a comma.  Following are some valid
  100.      entries:
  101.  
  102.      char(132)='a'
  103.      char('f')='ABC',32
  104.      char(34)=255,'abc',27,'G'
  105.  
  106.      Any line in the file that begins with a semicolon will be ignored
  107.      (useful for inserting comments).  Lines in the substitution file may
  108.      be no longer than 80 characters.  To continue a line on the next
  109.      line, end the line with a plus sign.  For example:
  110.  
  111.      char('~')='ABCEFGHIJKLMNOP',+
  112.      'QRSTUVWXYZ'
  113.  
  114.      This command would print the entire alphabet everytime the tilde
  115.      ('~') was encountered in a file.
  116.  
  117.      PC-OUTLINE will look for the file PCOPRN$.CFG in the same directory
  118.      as the configuration file.  If you have not used either the
  119.      l=<filename> command parameter or the SET PCO=<filename> command to
  120.      specify where the configuration file is located, then PC-OUTLINE will
  121.      just look for PCOPRN$.CFG in the current directory.
  122.  
  123. Changes from Version 1.00 to 1.01 are bug fixes only, mostly related to
  124. the copy block and move block commands.
  125.