home *** CD-ROM | disk | FTP | other *** search
/ Best Objectech Shareware Selections / UNTITLED.iso / boss / util / dos / 002 / scrollit.doc < prev    next >
Encoding:
Text File  |  1993-05-29  |  36.5 KB  |  900 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.                                     SCROLLit
  10.  
  11.  
  12.                            Advanced ScrollBack Buffer
  13.  
  14.  
  15.  
  16.                                   Version 1.7
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.                                Copyright 1992-93
  27.                               All Rights Reserved
  28.  
  29.  
  30.  
  31.  
  32.  
  33.                                        By
  34.  
  35.  
  36.                           Bromfield Software Products
  37.                                  P.O. Box 70081
  38.                                 Ottawa, Ontario
  39.                                     K2P 2M3
  40.                                      Canada
  41.  
  42.  
  43.  
  44.  
  45.                              Compuserve 71054,3051
  46.  
  47.  
  48.  
  49.  
  50.        License
  51.  
  52.        SCROLLit  is  NOT free  software,  but  is  being distributed  as
  53.        "shareware".
  54.  
  55.        Non-registered  users  of this  software  are  granted a  limited
  56.        license to use this program for a trial period of thirty days for
  57.        the purpose  of determining  if SCROLLit  is  suitable for  their
  58.        needs.  At  the  end of  this  trial  period,  you should  either
  59.        register your copy or discontinue using SCROLLit.
  60.  
  61.        Whether or not you  register SCROLLit, we encourage you  to share
  62.        the unregistered  version of  the program  with your friends  and
  63.        colleagues and to upload it to  any BBS's you use. Please be sure
  64.        to keep all the files together; a complete list of  files appears
  65.        in README.DOC.
  66.  
  67.  
  68.  
  69.        Introduction - What is SCROLLit?
  70.  
  71.        SCROLLit is  a memory  resident (TSR)  program that captures,  in
  72.        full color,  the lines  of text  that scroll off  the top  of the
  73.        video  screen  and stores  them in  an  XMS, EMS  or conventional
  74.        memory 'scrollback' buffer  of a  size specified by  the user.  A
  75.        fast compression technique is  used to store more than  twice the
  76.        number of lines in the available buffer space. 
  77.  
  78.        SCROLLit  can  then be  activated or  'popped  up' over  any non-
  79.        graphical  program   by  pressing  the  scroll   lock  key.  Once
  80.        activated,  SCROLLit will let you  scroll back through this saved
  81.        information, line by line  or page by  page. SCROLLit has a  fast
  82.        search  capability as well  as a block-write  feature that allows
  83.        you  to mark  a block  of lines  for  writing to  a disk  file or
  84.        sending to your printer.
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.                                                                        1
  109.  
  110.  
  111.  
  112.  
  113.        Capturing Lines
  114.  
  115.        Once resident,  SCROLLit monitors video activity  to capture text
  116.        lines  that are scrolled off the top  of the screen. You may wish
  117.        to look  back through the  output of the  DIR command in  DOS, or
  118.        review the progress of a Bulletin Board (BBS) session while using
  119.        your communications software, for example.
  120.  
  121.        A program can  scroll the  screen in three  ways: DOS  (interrupt
  122.        21h)  function calls,  BIOS (interrupt  10h) function  calls, and
  123.        direct  writing to video memory. SCROLLit is able to capture both
  124.        DOS and BIOS scrolling, but not the scrolling performed by direct
  125.        screen writing. Fortunately, many programs that use direct screen
  126.        writing  can be configured to use BIOS function calls. Appendix 1
  127.        describes how to reconfigure two popular  communications programs
  128.        (Qmodem and  Telix) to  use  BIOS scrolling,  rather than  direct
  129.        screen writing. 
  130.  
  131.        Some programs clear the  screen rather than scrolling  old output
  132.        off  the top  of the  screen. Monitoring  DOS and  BIOS scrolling
  133.        would not capture  this output because no scrolling  is involved.
  134.        To get around this problem, SCROLLit monitors BIOS 'clear-screen'
  135.        requests.  When a  clear-screen request  has been  made, SCROLLit
  136.        copies the entire screen to the scrollback buffer before the BIOS
  137.        clears  the  screen. As  a result,  you  will find  that SCROLLit
  138.        captures more output than most other scrollback buffer utilities.
  139.  
  140.        Disable Screen Capture Temporarily 
  141.  
  142.        SCROLLit's capturing of screen scrolling and clear-screens can be
  143.        temporarily disabled by typing:
  144.  
  145.                  SCROLLit /-
  146.  
  147.        Screen capturing can later be re-enabled with the /+ command line
  148.        switch.  It may  be  useful to  disable  screen capturing  before
  149.        executing a program that  generates a lot of scrolling  or clear-
  150.        screens, but that  you do  not wish captured  in your  scrollback
  151.        buffer. WordPerfect is a good example of this. In WordPerfect, as
  152.        you page  through your document, SCROLLit  would normally capture
  153.        each page into the scrollback buffer, potentially taking up a lot
  154.        of  buffer  space.  You  may   find  it  convenient  to   execute
  155.        WordPerfect using a simple batch file as follows:
  156.  
  157.                  CD\WP51
  158.                  CLS
  159.                  SCROLLIT /-
  160.                  WP51
  161.                  SCROLLIT /+
  162.  
  163.        SCROLLit  can still be popped  up when capturing  is disabled, so
  164.        that you can still  scroll back through lines that  were captured
  165.        before screen capture was disabled.
  166.  
  167.  
  168.  
  169.  
  170.  
  171.                                                                        2
  172.  
  173.  
  174.  
  175.  
  176.        Compressing the scrollback buffer
  177.  
  178.        Each line that SCROLLit saves contains 80 characters and 80 color
  179.        attributes, requiring a  total of  160 bytes storage.  A full  25
  180.        line  screen  requires 4000  bytes  of  storage space.  There  is
  181.        usually a  lot of blank space on a screen, however, and the color
  182.        attributes are often  unchanged for  an entire line  of text  and
  183.        sometimes the whole screen. SCROLLit uses a very fast run-length-
  184.        encoded  compression  algorithm to  shrink  the  amount of  space
  185.        required to save a line of text and is typically able to compress
  186.        the scrollback  buffer by 60 to 70%, meaning that more than twice
  187.        the  number of  lines of  can be  saved in  the  available buffer
  188.        space.
  189.  
  190.        The  extent to  which  SCROLLit has  been  able to  compress  the
  191.        scrollback buffer is displayed when the help key (F1) is pressed.
  192.  
  193.                       ╒═════════════════════════════════╕               
  194.        For example:   │  Number of lines saved:  2046   │               
  195.                       │  Average bytes per line: 43     │               
  196.                       │  Percent compression:    73%    │               
  197.                       ╘═════════════════════════════════╛         
  198.  
  199.        There is some overhead in setting up the buffer, which means that
  200.        SCROLLit  will obtain  better  compression with  a larger  buffer
  201.        size.
  202.  
  203.  
  204.  
  205.        Installing and Unloading SCROLLit
  206.  
  207.        SCROLLit  is a memory resident (TSR) program that is installed in
  208.        memory  by typing  SCROLLit  followed by  the desired  scrollback
  209.        buffer  size in kilobytes. The buffer size  must be at least 20k.
  210.        For example, to install  SCROLLit with a 100k scrollback  buffer,
  211.        type:
  212.  
  213.                  SCROLLit 100
  214.  
  215.        You may wish  to store this command in your  autoexec.bat file to
  216.        ensure  that  SCROLLit  is  loaded  whenever  you  turn  on  your
  217.        computer. You  will need to  prefix the command with  the name of
  218.        the  directory where SCROLLit is  stored, or store  SCROLLit in a
  219.        directory that you have set in your path command.
  220.  
  221.        SCROLLit can be  unloaded from  memory with the  /U command  line
  222.        option, provided that other TSR's have not been loaded after it:
  223.  
  224.                  SCROLLit /U
  225.  
  226.        Installing  and unloading of  SCROLLit is this  simple. There are
  227.        other command line options that will be discussed throughout this
  228.        document.  A complete list of command line options is provided in
  229.        Appendix 3, and can be displayed by typing:
  230.  
  231.                  SCROLLit /?
  232.  
  233.  
  234.                                                                        3
  235.  
  236.  
  237.  
  238.  
  239.        Memory Usage
  240.  
  241.        The SCROLLit  program itself  takes up about  9k of  conventional
  242.        memory, while the scrollback buffer may be stored in XMS,  EMS or
  243.        conventional memory. SCROLLit will store the scrollback buffer in
  244.        XMS memory  if there  is enough XMS  memory available to  store a
  245.        buffer of  the size you  request. If  adequate XMS memory  is not
  246.        available,  SCROLLit will  store  the buffer  in  EMS memory.  If
  247.        adequate EMS  memory is  not available, then  conventional memory
  248.        will be used.
  249.  
  250.        If there is  not enough  memory of any  type available,  SCROLLit
  251.        will  produce a summary of the available memory on your computer,
  252.        so that  you  can determine  what size  of buffer  will fit.  The
  253.        amount of available memory refers to the memory available for use
  254.        by SCROLLit and is  typically less than the total  memory in your
  255.        computer because other programs may already have reserved some of
  256.        this memory for their own use.
  257.  
  258.        SCROLLit will  automatically store  the scrollback buffer  in XMS
  259.        memory  if enough is available. Under some circumstances, you may
  260.        wish  to keep this XMS  memory available for another application.
  261.        The /E command line  option tells SCROLLit to store the buffer in
  262.        EMS  memory, even if  enough XMS memory  is available. Similarly,
  263.        the /C command line option tells SCROLLit to  store the buffer in
  264.        conventional memory even if adequate XMS or EMS memory exists.
  265.  
  266.        For  example, to  install  SCROLLit with  a  160k buffer  in  EMS
  267.        memory, type:
  268.  
  269.                  SCROLLit 160 /E
  270.  
  271.        In  addition to XMS, EMS  and conventional memory,  there are two
  272.        other types of  memory that  may be available  on your  computer:
  273.        upper memory and raw extended memory.
  274.  
  275.        Upper memory refers to the memory between the top of conventional
  276.        memory  (the first  640k)  and 1024k.  The SCROLLit  program (and
  277.        buffer) can  be stored  in this  type of  memory  rather than  in
  278.        conventional memory  by using  the 'loadhigh' capability  of your
  279.        memory manager, for example the LOADHIGH command in DOS Version 5
  280.        or  the LOADHI program  in Quarterdeck's  QEMM. Storing  your TSR
  281.        programs   in  upper   memory  leaves   more  of   your  valuable
  282.        conventional memory  available for your other  programs. Refer to
  283.        your DOS  5 or memory  manager documentation for  instructions on
  284.        how to load TSR's into upper memory.
  285.  
  286.        Raw extended memory  refers to  memory above the  1024k limit  on
  287.        your  computer that has not yet been converted into usable XMS or
  288.        EMS memory by your  memory manager. If SCROLLit detects  that you
  289.        don't have  XMS or EMS  installed, but  you do have  raw extended
  290.        memory available,  the program  will  advise you  to install  the
  291.        necessary  software drivers  to convert  this memory into  a more
  292.        usable form. For example,  this memory can be converted  into XMS
  293.        memory by adding DEVICE=HIMEM.SYS to your config.sys file.
  294.  
  295.  
  296.  
  297.                                                                        4
  298.  
  299.  
  300.  
  301.  
  302.        Activating SCROLLit
  303.  
  304.        SCROLLit can be activated ('popped up') over any text-based (i.e.
  305.        non  graphical) application by pressing  the Scroll Lock key (the
  306.        SCROLLit 'hotkey'). If  you press  the Scroll Lock  key while  in
  307.        graphics mode, SCROLLit will beep your speaker to remind you that
  308.        it cannot be activated while you are in graphics mode. 
  309.  
  310.        There are some  circumstances where SCROLLit will  decide that it
  311.        is not appropriate  to popup  over a  text-based application  and
  312.        will beep  instead. (Technically,  SCROLLit will not  interrupt a
  313.        DOS function call, and will wait a second or so for DOS to become
  314.        available. Other TSR's  are not necessarily  so careful, and  may
  315.        interrupt  DOS. SCROLLit will therefore not popup if this type of
  316.        TSR has  already  interrupted DOS  or if  the foreground  program
  317.        keeps DOS busy for an extended period of time.)
  318.  
  319.        Once SCROLLit  is installed,  use the key  combination Alt-Scroll
  320.        Lock (press the Alt key and the Scroll Lock key at the same time)
  321.        in order to turn your Scroll Lock light on and off.
  322.  
  323.        If  you are using an  unregistered copy of  SCROLLit, a shareware
  324.        screen may  appear when  you press  the hotkey  to remind you  to
  325.        please register  your  copy of  SCROLLit.  This screen  does  not
  326.        appear on registered copies  of the program. Please refer  to the
  327.        section 'How to  Register SCROLLit'  for more details  on how  to
  328.        remove this shareware screen.
  329.  
  330.  
  331.      ╒══════════════════════ SCROLLit Version 1.7 ═══════════════════════╕
  332.      │                                                                   │
  333.      │ SCROLLit is Shareware.  Please try it for 30 days to determine    │
  334.      │ if it meets your needs.  If you continue to use the program       │
  335.      │ beyond the trial period, you are required to pay the registration │
  336.      │ fee.  For more information, type SCROLLit /R at the DOS prompt.   │
  337.      │                                                                   │
  338.      │ The registration fee is $20 CDN for Canadian residents, or        │
  339.      │                         $17 US  for U.S. and overseas addresses.  │
  340.      │                                                                   │
  341.      │         Send to:      Bromfield Software Products                 │
  342.      │                       P.O. Box 70081                              │
  343.      │                       Ottawa, Ontario  K2P 2M3                    │
  344.      │                       CANADA                                      │
  345.      │                                                                   │
  346.      │ Registration removes this screen.  Press F5 to continue.          │
  347.      │                                                                   │
  348.      ╘═════════ Copyright 1992-93 Bromfield Software Products ═══════════╛
  349.  
  350.  
  351.        Once  you have activated SCROLLit,  you can exit  by pressing the
  352.        escape (Esc) key or pressing the Scroll Lock key a second time. 
  353.  
  354.        The hotkey  can be changed  with the  /H command  line switch  as
  355.        explained  in the  section 'Customizing  SCROLLit -  Changing the
  356.        Hotkey'. 
  357.  
  358.  
  359.  
  360.                                                                        5
  361.  
  362.  
  363.  
  364.  
  365.        Using SCROLLit - Scrolling the scrollback buffer
  366.  
  367.        Once you have activated SCROLLit, you can scroll back through the
  368.        buffer using the standard  screen scrolling commands:   and  to
  369.        scroll line  by line,  Page Up  and Page Down  to scroll  page by
  370.        page,  and the Home and End keys to go to the beginning or end of
  371.        the scrollback buffer. The bottom line on your screen, the status
  372.        line,  will indicate  your  current position  within the  buffer.
  373.        'Line 48 of  2106' means that the  top line on the  screen is the
  374.        48th line in a buffer holding a total of 2106 lines of text.
  375.  
  376.        The Ctrl-Home key  combination can  be pressed to  return to  the
  377.        same position in the scrollback buffer  you were in when you last
  378.        exited SCROLLit. It is possible that this line has since scrolled
  379.        off the  top of the buffer, in which case, SCROLLit will beep and
  380.        place you at the top (Line 1) of the buffer.
  381.  
  382.  
  383.        Using SCROLLit - Searching the scrollback buffer
  384.  
  385.        There  are three  commands for  searching through  the scrollback
  386.        buffer for a target string. Press the letter B to search Backward
  387.        through the buffer from your current location. Press the letter F
  388.        for a Forward search from your current location. Press the letter
  389.        A  to search Again  for the  next occurrence  of the  same target
  390.        string.
  391.  
  392.        SCROLLit performs a fast,  case-insensitive search for the target
  393.        string that you provide. When SCROLLit finds an occurrence of the
  394.        target, the screen will  be repositioned to that location  in the
  395.        scrollback buffer and  the target string  will be highlighted  by
  396.        reverse video  to show you where  it was found. If  the target is
  397.        not found,  SCROLLit will beep the speaker and give you a warning
  398.        message on the status line.
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423.                                                                        6
  424.  
  425.  
  426.  
  427.  
  428.        Using SCROLLit - Block-writing to file or printer
  429.  
  430.        Block-writing refers to the ability  to mark a block of lines  in
  431.        the buffer and then write this block to a specified  disk file or
  432.        to  your printer.  Press the  letter W  to invoke  block-Writing.
  433.        There are  three steps  to writing  a block  of  lines: mark  the
  434.        beginning  of the  block, mark  the end  of the  block, and  then
  435.        specify the disk filename or printer for  output. If you are part
  436.        way  through these steps, you can  back up by pressing the escape
  437.        (Esc) key.
  438.  
  439.        Use the cursor keys to move to the  location of the first line in
  440.        the  block that  you  wish to  mark. The  row  is highlighted  by
  441.        reverse  video and is  marked as the  beginning of  your block by
  442.        pressing the enter key. Then the cursor keys are again used, this
  443.        time to chose the end of the block, again marked  by pressing the
  444.        enter key. Once you have pressed the enter key a second time, the
  445.        block of lines will be marked and highlighted in reverse video.
  446.  
  447.        After  marking the block of  lines, SCROLLit will  prompt you for
  448.        the  disk filename where these lines should be saved. The default
  449.        filename is SCROLL.IT in the current directory, but can easily be
  450.        changed. If a file  with that name already exists,  SCROLLit will
  451.        ask you if you wish  to overwrite this file or append  this block
  452.        of lines to the end of the file. 
  453.  
  454.        To send the block of lines to your printer type PRN rather than a
  455.        filename. (Type LPT2 to send to LPT2.)
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.                                                                        7
  487.  
  488.  
  489.  
  490.  
  491.        Using SCROLLit - the Help screen
  492.  
  493.        The  help screen, brought up  by pressing the  F1 key, summarizes
  494.        the commands discussed in the last two pages. In addition  to the
  495.        command  summary reproduced  below,  the Help  screen includes  a
  496.        summary of the size of the  buffer and the degree of  compression
  497.        as discussed in the section 'Compressing the scrollback buffer'. 
  498.  
  499.  
  500.                  ╒═══════════════════════════════════════════╕
  501.                  │           Scroll up/down 1 line         │
  502.                  │ PgUp  PgDn  Scroll up/down 1 page         │
  503.                  │ Home  End   Go to beginning/end of buffer │
  504.                  │ F           Search forward for text       │
  505.                  │ B           Search backward for text      │
  506.                  │ A           Search again, same text       │
  507.                  │ W           Write block of text           │
  508.                  │               to file or printer          │
  509.                  │ Ctrl-Home   Return to last position       │
  510.                  │ Esc         Exit SCROLLit                 │
  511.                  ╘═══════════════════════════════════════════╛
  512.  
  513.                       ╒═════════════════════════════════╕               
  514.                       │  Number of lines saved:  2046   │               
  515.                       │  Average bytes per line: 43     │               
  516.                       │  Percent compression:    73%    │               
  517.                       ╘═════════════════════════════════╛         
  518.  
  519.  
  520.        How to register SCROLLit
  521.  
  522.        The registration  fee for  SCROLLit is $17  U.S. or  $20 CDN  for
  523.        Canadian residents. The ORDERFRM.DOC file can be  printed on your
  524.        printer as a convenient form to use for registration.
  525.  
  526.        When you register SCROLLit, you will be mailed a registration key
  527.        that  is derived  from the spelling  of your  name. Your  name is
  528.        specified with the /N command line option and the eight character
  529.        registration  key is specified  with the /K  command line option.
  530.        Installing  SCROLLit with  a  100k scrollback  buffer would  look
  531.        like:
  532.  
  533.                  SCROLLit 100 /N=John_P._Doe /K=12345abc
  534.  
  535.        Note that underscores are used  instead of spaces when specifying
  536.        your name and that both the name and the  key can be specified in
  537.        either  upper or lower  case. SCROLLit will  check to  see if the
  538.        registration  key is  valid and  correctly matches  the specified
  539.        name. If specified  correctly, SCROLLit will  no longer bring  up
  540.        the shareware screen when activated.
  541.  
  542.        Typically, you  will be installing SCROLLit  in your autoexec.bat
  543.        file, which  should be edited  to include the  /N and  /K command
  544.        line options as  illustrated above. This registration  key is for
  545.        your personal use only. Please do not reveal it to others.
  546.  
  547.  
  548.  
  549.                                                                        8
  550.  
  551.  
  552.  
  553.  
  554.        Customizing SCROLLit - Changing the Color Settings
  555.  
  556.        By  default, SCROLLit  uses  a color  scheme  of blue  and  white
  557.        against a cyan background. While this combination looks fine on a
  558.        color  monitor, some  users of  LCD notebooks  report that  these
  559.        color attributes lack definition  when translated into the shades
  560.        of grey that  these machines use  to represent different  colors.
  561.        SCROLLit has two  command line  switches that allow  the user  to
  562.        override the  defaults and specify  the color attributes  used in
  563.        color video mode 3 and in monochrome video mode 7.
  564.  
  565.  
  566.             /AC=a1,a2,a3,a4   Attributes used in color video mode 3.
  567.  
  568.             /AM=a1,a2,a3,a4   Attributes used in mono video mode 7.
  569.  
  570.                                       Default Values
  571.                                      ================
  572.                                      Color       Mono
  573.             a1 = Border color         30          70
  574.             a2 = Normal Text          31          70
  575.             a3 = Highlighted Text     3F          70
  576.             a4 = Text being edited    0F          0F
  577.            
  578.  
  579.        Color attributes are specified  as two digit hexidecimal numbers.
  580.        The first  digit specifies  the background  color and  the second
  581.        digit specifies the foreground color.
  582.  
  583.  
  584.             First Digit (Background)         Second Digit (Foreground)
  585.  
  586.             0 -- Black                       0 -- Black
  587.             1 -- Blue                        1 -- Blue
  588.             2 -- Green                       2 -- Green
  589.             3 -- Cyan                        3 -- Cyan
  590.             4 -- Red                         4 -- Red
  591.             5 -- Magenta                     5 -- Magenta
  592.             6 -- Brown                       6 -- Brown
  593.             7 -- Grey                        7 -- White
  594.                                              8 -- Grey
  595.                                              9 -- Intense Blue
  596.                                              A -- Intense Green
  597.                                              B -- Intense Cyan
  598.                                              C -- Intense Red
  599.                                              D -- Intense Magenta
  600.                                              E -- Intense Yellow
  601.                                              F -- Intense White
  602.  
  603.  
  604.        These commands can  be used  to set the  color attributes  during
  605.        installation or  after SCROLLit  has already been  installed. For
  606.        example, to  install SCROLLit with  a 100k buffer  and customized
  607.        color attributes for use during color mode 3, type:
  608.  
  609.             SCROLLit 100 /AC=20,27,2F,07
  610.  
  611.  
  612.                                                                        9
  613.  
  614.  
  615.  
  616.  
  617.        Customizing SCROLLit - Changing the Hotkey
  618.  
  619.        By default, SCROLLit uses the Scroll Lock key  as the hotkey, but
  620.        this can be changed with the /H=skk command line paramater, where
  621.        s is a single digit hexidecimal SHIFT code and kk is a  two digit
  622.        hexidecimal  KEY  code  (see  below).  For  example,  to  install
  623.        SCROLLit with a 100k buffer and "Alt-Space" as the hotkey type:
  624.  
  625.              SCROLLit 100 /h=839
  626.  
  627.  
  628.        Single Digit SHIFT code
  629.        -----------------------------------------------------------
  630.        Alt                                  *  *  *  *  *  *  *  *
  631.        Ctrl                     *  *  *  *              *  *  *  *      
  632.        Left Shift         *  *        *  *        *  *        *  *
  633.        Right Shift     *     *     *     *     *     *     *     *
  634.        -----------------------------------------------------------
  635.        SHIFT code:  0  1  2  3  4  5  6  7  8  9  A  B  C  D  E  F 
  636.  
  637.  
  638.        Two Digit KEY Code
  639.        ---------------------------------------------------------------
  640.                   Hex     |               Hex     |               Hex
  641.        Key        Code    |  Key          Code    | Key           Code
  642.        ===============================================================
  643.        Esc         01     |  A             1E     |  F1             3B
  644.        !1          02     |  S             1F     |  F2             3C
  645.        @2          03     |  D             20     |  F3             3D
  646.        #3          04     |  F             21     |  F4             3E
  647.        $4          05     |  G             22     |  F5             3F
  648.        %5          06     |  H             23     |  F6             40
  649.        ^6          07     |  J             24     |  F7             41
  650.        &7          08     |  K             25     |  F8             42
  651.        *8          09     |  L             26     |  F9             43
  652.        (9          0A     |  :;            27     |  F10            44
  653.        )0          0B     |  "'            28     |  NumLock        45
  654.        _-          0C     |  ~`            29     |  ScrollLock     46
  655.        +=          0D     |  Left Shift    2A     |  7 Home         47
  656.        Backspace   0E     |  |\            2B     |  8 UpArrow      48
  657.        Tab         0F     |  Z             2C     |  9 PgUp         49
  658.        Q           10     |  X             2D     |  - (grey)       4A
  659.        W           11     |  C             2E     |  4 Left Arrow   4B
  660.        E           12     |  V             2F     |  5 (keypad)     4C
  661.        R           13     |  B             30     |  6 Right Arrow  4D
  662.        T           14     |  N             31     |  + (grey)       4E
  663.        Y           15     |  M             32     |  1 End          4F
  664.        U           16     |  <,            33     |  2 Down Arrow   50
  665.        I           17     |  >.            34     |  3 PgDn         51
  666.        O           18     |  ?/            35     |  0 Ins          52
  667.        P           19     |  Right Shift   36     |  . Del          53
  668.        {[          1A     |  PrtSc *       37     |  F11            57
  669.        }]          1B     |  Alt           38     |  F12            58
  670.        Enter       1C     |  Spacebar      39     |
  671.        Ctrl        1D     |  Caps Lock     3A     |
  672.  
  673.  
  674.  
  675.                                                                       10
  676.  
  677.  
  678.  
  679.  
  680.        Appendix 1 - SCROLLit and Communications Software
  681.  
  682.  
  683.        SCROLLit can  be used  to scrollback through  your communications
  684.        session  provided you  configure your communications  software to
  685.        use BIOS screen scrolling rather than direct screen writing. 
  686.  
  687.        Qmodem scrolls the screen using direct screen writing by default,
  688.        but allows  BIOS scrolling by  setting the 'Jump  scroll' option.
  689.        Press Alt-N / Video / Toggles / Jump scroll.
  690.  
  691.        Telix also  scrolls  the screen  uses  direct screen  writing  by
  692.        default,  but  will use  the BIOS  for  all video  activity (both
  693.        scrolling and  writing characters  to the  screen) when  the BIOS
  694.        option is set.  Press Alt-O /  Screen / ScreenWrite  / Bios.  The
  695.        Status line should not  be configured for the top  of the screen.
  696.        It can be set to the bottom of the screen or disabled by pressing
  697.        Alt-O / Terminal / D-Status Line / None or Bottom.
  698.  
  699.        Procomm Plus uses BIOS scrolling with no option for direct screen
  700.        writing.  No  reconfiguring  is required.  The  shareware Procomm
  701.        Version  2.4.3 also uses BIOS  scrolling. There is  an option for
  702.        direct screen  writing, but  it does  not effect  scrolling (only
  703.        writing characters  to the screen). No  reconfiguring is required
  704.        for SCROLLit to  capture scrolled output  from either Procomm  or
  705.        Procomm Plus.
  706.  
  707.        SCROLLit  has  a  wider range  of  features  than the  scrollback
  708.        buffers  built  into  these  communications  packages (i.e.  full
  709.        color, string search,  block-writing, compression).  Furthermore,
  710.        when  you use  SCROLLit, your  entire session  is saved  until it
  711.        scrolls off  the top  of the buffer,  while the  lines stored  in
  712.        built-in scrollback buffers are lost  when you exit the  program.
  713.        You  can use an external scrollback program such as SCROLLit just
  714.        as  you   can  use  external  protocol  drivers  to  augment  the
  715.        capabilities of your communications software.
  716.  
  717.        Special Note for Compuserve Users
  718.  
  719.        Compuserve sessions can  be set for line-oriented mode, where old
  720.        output  scrolls off the top  of the screen,  or for page-oriented
  721.        mode,  where Compuserve sends  a page  of information,  and after
  722.        your response, clears the page before transmitting the next page.
  723.  
  724.        In page-oriented mode, the screen  is never scrolled, so SCROLLit
  725.        intercepts the  'clear-screen' requests in order  to capture your
  726.        past output.
  727.  
  728.        SCROLLit will  capture your  Compuserve session whether  you have
  729.        set a  line-oriented or  a page-oriented  terminal type.  You can
  730.        change from one mode to another by typing SET TERMINAL.
  731.  
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.                                                                       11
  739.  
  740.  
  741.  
  742.  
  743.        Appendix 2 - Using SCROLLit with Desqview
  744.  
  745.  
  746.        SCROLLit is Desqview  aware and can be successfully loaded within
  747.        a Desqview window. SCROLLit will detect that it is operating in a
  748.        Desqview window and will capture scrolled lines from the Desqview
  749.        video buffer rather than the hardware video buffer. 
  750.  
  751.        SCROLLit must be installed  within a Desqview window in  order to
  752.        capture  scrolling  within  Desqview.  You may  want  to  install
  753.        SCROLLit and the DVANSI  driver in your DOS window,  for example.
  754.        The easiest way to  do this is by  setting up a small  batch file
  755.        with the following two lines:
  756.  
  757.             DVANSI
  758.             SCROLLit 100
  759.  
  760.        If you called this  file, say, mydos.bat, then you  would specify
  761.        mydos  in  the  program field  in  CP  (Change  a Program).  Then
  762.        whenever  you  opened  this  particular  window,  Desqview  would
  763.        execute  this  batch file,  loading  both  your  ansi driver  and
  764.        SCROLLit.
  765.  
  766.        Normally,  SCROLLit would only allow one copy of itself in memory
  767.        at one time (attempting to load a second  copy yields an 'Already
  768.        installed' message).  The one exception to this rule is Desqview,
  769.        where it  is  possible  to have  one  copy of  SCROLLit  in  each
  770.        Desqview window. (Trying to  load two copies in one  window will,
  771.        of course, produce the 'Already installed' message.)
  772.  
  773.        Desqview Optimization
  774.  
  775.        SCROLLit gives up it's time slice during idle periods in order to
  776.        optimize the performance of other Desqview windows. 
  777.  
  778.        By  default,  SCROLLit hooks  the  timer  interrupt in  order  to
  779.        provide a timeout feature and to allow the program to  popup in a
  780.        wide variety of  situations. Most  TSR's hook the  timer in  this
  781.        way. However, upon  detecting the timer hook, Desqview  will wait
  782.        one extra  timer tick before giving  up the time slice  to ensure
  783.        that the timer  itself is serviced. As  a result, any program  or
  784.        TSR that hooks the timer interrupt (either hardware interrupt 08h
  785.        or software interrupt  1Ch) will reduce  the performance of  your
  786.        other Desqview  windows. To fully optimize  Desqview performance,
  787.        SCROLLit should by  installed with the /NT  (for NoTimer) command
  788.        line switch which allows installation without the timer hook (the
  789.        BIOS  keyboard  interrupt is  hooked  instead).  For example,  to
  790.        install SCROLLit with a 100k buffer and no timer hook, type: 
  791.  
  792.             SCROLLIT 100 /NT
  793.  
  794.        Without  a  timer  hook,  there  will  be  some  situations where
  795.        SCROLLit will not be able to popup. Users will have to experiment
  796.        with this option to determine if this is inconvenient.
  797.  
  798.  
  799.  
  800.  
  801.                                                                       12
  802.  
  803.  
  804.  
  805.  
  806.        Appendix 3 - SCROLLit Command Line Options
  807.  
  808.  
  809.        nnn       Scrollback buffer  size in kilobytes. Must  be at least
  810.                  20k.
  811.  
  812.        /E        Use EMS  memory for scrollback buffer  storage, even if
  813.                  XMS is available.
  814.  
  815.        /C        Use  conventional memory for scrollback buffer storage,
  816.                  even if XMS or EMS is available.
  817.  
  818.        /N=       Specify  your  name  as  given  for  registration.  Use
  819.                  underscores instead of spaces  as in John_P._Doe.  Case
  820.                  insensitive.
  821.  
  822.        /K=       Specify the  eight character registration  key that  is
  823.                  sent upon registration. Case insensitive.
  824.  
  825.        /H=       Select alternate hotkey.
  826.  
  827.        /AC=      Select color attributes for color video mode 3.
  828.  
  829.        /AM=      Select color attributes for mono video mode 7.
  830.  
  831.        /NT       Install  SCROLLit   without  hooking  the   timer  (for
  832.                  Desqview users).
  833.  
  834.        /-        Temporarily disable screen capture.
  835.  
  836.        /+        Re-enable screen capture.
  837.  
  838.        /R        Information on how to register.
  839.  
  840.        /?        Display command line summary.
  841.  
  842.        /U        Attempt to unload SCROLLit from memory. Will not unload
  843.                  if other TSR's were loaded after SCROLLit.
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.                                                                       13
  865.  
  866.  
  867.  
  868.  
  869.                                Technical Support
  870.  
  871.  
  872.        If  you  have questions,  problems,  or ideas  for  new features,
  873.        please contact Bromfield Software Products  by postal mail to our
  874.        Ottawa address  or  via Compuserve  electronic  mail to  User  ID
  875.        71054,3051.
  876.  
  877.  
  878.  
  879.  
  880.                                 Acknowledgements
  881.  
  882.  
  883.        SCROLLit   was  originally  created   to  provide   a  scrollback
  884.        capability for a number of different  software products developed
  885.        by  Bromfield Software  Products. With  the shareware  release we
  886.        have  received useful  feedback  from  SCROLLit users  throughout
  887.        Canada, the United States, and around the world. We wish to thank
  888.        all users who have sent us reports of possible  bugs and provided
  889.        ideas for useful  new features. Special thanks to  those SCROLLit
  890.        users  that have taken the time to  help with beta testing of new
  891.        versions: Phil Webb, Jim  McKeown, Laurent Dube, Karl Schopmeyer,
  892.        George Havach, Christian Burger, Gary MacDonald, Prof. Timo Salmi
  893.        (of the University of Vaasa, Finland), Bruce Judd, Bruce  Francis
  894.        and Tony Gozdz.  We would also like to thank  all those that have
  895.        supported  the shareware  concept  by registering  their copy  of
  896.        SCROLLit.
  897.  
  898.  
  899.  
  900.  
  901.                                    Disclaimer
  902.  
  903.  
  904.        Use  of this  program acknowledges  this disclaimer  of warranty:
  905.        "This  program is  supplied  as is.  Bromfield Software  Products
  906.        disclaims all warranties, express or implied, including,  without
  907.        limitation, the  warranties of merchantability and  of fitness of
  908.        this program for any purpose. Bromfield Software Products assumes
  909.        no  liability  for damages  direct  or  consequential, which  may
  910.        result from the use of this program."
  911.  
  912.  
  913.  
  914.  
  915.                                    Trademarks
  916.  
  917.  
  918.        All trademarks and copyrights belong to their respective holders.
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.                                                                       14
  928.  
  929.