home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / sampler0 / doors.doc < prev    next >
Text File  |  1986-01-16  |  4KB  |  96 lines

  1. The two programs included in this archive, DOORS and DOORS2 allow
  2. a system with both a monochrome AND a graphics monitor to switch
  3. between the two monitors "on the fly", without leaving software
  4. that is running.
  5.  
  6. Either program becomes memory resident when it is run.
  7.  
  8. USAGE:
  9.  
  10.     DOORS  -  after it has been run, pressing the Alt - Right Shift
  11.               keys together will switch the active monitors, and copy
  12.               all text to the other monitor.
  13.  
  14.     DOORS2 -  pressing the Alt - Left Shift keys together will switch
  15.               to the other monitor.  Pressing the Alt - Right Shift
  16.               keys will copy the screen from the active monitor
  17.               to the unused monitor, but will return the cursor
  18.               back to its original screen.
  19.  
  20.  
  21. I modified the original program because:
  22.  
  23.     - I prefer to work with the monochrome monitor because of the
  24.       clarity of the text, but very often I would like text shown
  25.       on the graphics monitor for reference (in effect, this lets
  26.       me see 50 lines of information at a time);
  27.  
  28.     - Some programs (such as PC-WRITE) write directly to video memory,
  29.       and switching monitors while using those programs only serves
  30.       to confuse them.
  31.  
  32.  
  33. Caveats:
  34.  
  35.     - If you are working with the graphics monitor, the routines will
  36.       only work if you are in an 80-column text mode (y'all can't
  37.       copy <or try to> graphics to the monochrome screen)
  38.  
  39.     - If you are working with the graphics monitor, you may lose
  40.       information stored on pages other than the active display page.
  41.       (The color/graphics card has enough memory to hold 4 80-column
  42.       display "pages").  These routines work by copying information
  43.       from the active page to the monochrome monitor (and back again,
  44.       if you're using DOORS2), but they make no provision for saving
  45.       the other display pages.  This will affect the operation of
  46.       very few programs, however.  Very few programs make use of the
  47.       additional text "pages" for the C/G adaptor card.  PC-WRITE
  48.       is one program that does, however -- if you are using PC-WRITE
  49.       on the graphics monitor, PC-WRITE stores its "help" screen
  50.       information on the other video pages.  Using these routines
  51.       with PC-WRITE will wipe out the "help" screens, but it will
  52.       NOT affect file being edited or the operation of PC-WRITE.
  53.  
  54.     - The routines don't bother to check if they had been previously
  55.       installed - so be careful, run 'em only once.
  56.  
  57.     - Use only ONE of the routines (either DOORS or DOORS2) -
  58.       don't try to use both.
  59.  
  60.     - The modification to the installation code that I made requires
  61.       DOS 2.0 or above -- the routines DON'T check the DOS version
  62.       that is being used.
  63.  
  64.     - If switching FROM the monochrome monitor, the routines switch
  65.       to the BW80 mode for the graphics monitor (see the source code
  66.       for a note on changing the mode to color, if desired).
  67.  
  68.  
  69. Information on the original DOORS.ASM program:
  70.       
  71.       ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  72.      ╔════════════════════════════════════════════════╗█
  73.      ║               PCMagizine ASseMbler             ║█
  74.      ║                                                ║█
  75.      ║     The programs began their lives in          ║█
  76.      ║     PC Magazine. A detailed description of     ║█
  77.      ║     the program can be found in the issue      ║█
  78.      ║     referenced below.                          ║█
  79.      ║                                                ║█
  80.      ╚════════════════════════════════════════════════╝▀
  81.  
  82.      DOORS.ASM     John Dickinson, "Try a Door, Not a Window"
  83.                Vol. 4, No. 3 (February  5, 1985)
  84.                Coordinating your color and monochrome
  85.                displays
  86.  
  87.  
  88.  
  89. Modified January 1986.
  90.  
  91. Please let me know about any bugs/comments that you have via
  92. Gene Plantz' IBBS, 312-882-4227.
  93.  
  94.                                                      Mike Pechnyo
  95.                                                      ID1206
  96.