home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / ZVIEWOS2.ZIP / READ.ME < prev    next >
Text File  |  1992-07-07  |  5KB  |  116 lines

  1. READ.ME
  2.  
  3.                                 ZVIEWP.EXE
  4.                                 ==========
  5.  
  6.                       The ZiffNet OS/2 Viewer Utility
  7.                       ===============================
  8.  
  9.  
  10. INSTALLING ZVIEWP
  11. =================
  12.  
  13. ZVIEWP.EXE is an OS/2-compatible (v1.3 and v2.0) version of ZVIEW, the 
  14. ZiffNet text viewer utility. It will run as a command-line utility or from 
  15. the Workplace shell. Included in this ZVWOS2.EXE self-extracting archive is 
  16. RHPANELP.DLL, the DLL file for ZVIEWP's menu system. Once you have 
  17. de-compressed ZVWOS2.EXE, you should copy RHPANELP.DLL to one of the 
  18. directories included in the OS/2 CONFIG.SYS LIBPATH= statement, so it will 
  19. always be accessible to ZVIEWP.
  20.  
  21. ZVIEWP is functionally identical to DOS ZVIEW, and the rest of this READ.ME 
  22. file is taken from the READ.ME for the DOS version of ZVIEW. Adapt the 
  23. suggestions below to your specific needs and setup under OS/2.
  24.  
  25.  
  26. ADDITIONAL COMMANDS
  27. ===================
  28.  
  29. Two additional quick-key commands are now available: Alt-E (Expand All) and 
  30. Alt-A (Collapse All). These are shown on the Tree (Alt-T) pull-down menu 
  31. and in the ZVIEW.ZDG documentation file but are not mentioned in Quick Help 
  32. (F1). These two commands Expand All or Collapse All headings, respectively, 
  33. in the Table of Contents screen.
  34.  
  35.  
  36. COLOR SELECTION AND *.INI FILES
  37. ===============================
  38.  
  39. ZVIEW will automatically detect the presence of a color or monochrome 
  40. display adapter and will default to a basic color scheme for both types of 
  41. displays. However, ZVIEW may get confused by laptop LCD screens or by other 
  42. hybrid video systems (eg. AT&T's 640x400 gray-scale display used on the 
  43. PC6300 series), and you may also wish to change ZVIEWP's default color 
  44. scheme.
  45.  
  46. ZVIEW uses a file called ZVIEW.INI to store color configuration 
  47. information. This file is created the first time you use the Options, Color 
  48. menu choice and hit Enter or click on [Ok] to exit from the color selection 
  49. dialog box. If you don't make any changes, the resulting ZVIEW.INI file 
  50. will contain the default settings. If you ESCape from the dialog box, the 
  51. ZVIEW.INI will not be created or re-written. ZVW.EXE includes several 
  52. sample *.INI files. 
  53.  
  54. LCDMONO.INI    - sample configuration for gray-scale LCD screens
  55. ATTMONO.INI    - sample configuration for AT&T PC6300 monochrome screens
  56. HGCMONO.INI    - sample configuration for IBM MDA/Hercules displays
  57. COLOR1.INI     - sample configuration for color systems (default setting)
  58. COLOR2.INI     - sample configuration for color (alternative setting)
  59.  
  60. To try out one of these sample files, COPY (don't rename!) the file you 
  61. want to the configuration filename - ZVIEW.INI. Then load ZVIEW and check 
  62. the results.
  63.  
  64. You can modify the colors using the Options, Color pull-down menu and save 
  65. the results by pressing Enter to close the dialog box. Then exit and 
  66. restart ZVIEW to see the changes. Because ZVIEW always modifies the same 
  67. file -- ZVIEW.INI, copy this file to a new filename to save the 
  68. configuration when you arrive at a color combination you like.
  69.  
  70. If your system has a color adapter and a monochrome monitor and the default 
  71. display settings are unsatisfactory, you may want to tell ZVIEW that you 
  72. are using a monochrome display. You can do this by setting an environment 
  73. variable in DOS. The command syntax is:
  74.  
  75. SET PNLMONO=Y
  76.  
  77. Use all capital letters. Try this in conjunction with the HGCMONO.INI 
  78. settings for best results. You can test this on a color monitor, as well.
  79.  
  80. To return ZVIEW to auto-detection mode, just eliminate the environment 
  81. variable. Type:
  82.  
  83. SET PNLMONO=
  84.  
  85. This will erase the variable from memory. You can add the SET command to 
  86. your AUTOEXEC.BAT file if you always want ZVIEW to use the monochrome mode.
  87.  
  88. You could use a batch file to start ZVIEW with your special configuration 
  89. file and/or set the PNLMONO environment variable. The batch file might look 
  90. like this (comments in parenthesis -- don't include them in the actual 
  91. batch file!):
  92.  
  93. @echo off           (Don't display commands)
  94.  
  95. cd\zview            (Change to the ZVIEW subdirectory on the current drive)
  96.  
  97. SET PNLMONO=Y       (Set ZVIEW to use a monochrome display)
  98.  
  99. copy FOOBAR.INI ZVIEW.INI > NUL    (Copy your FOOBAR.INI file to ZVIEW.INI 
  100.                                     and don't display the "1 file(s)
  101.                                     copied" message.)
  102.  
  103. ZVIEW %1            (Load ZVIEW. Use the "%1" parameter to pass the name of 
  104.                      a *.ZDG file to ZVIEWP from the command line. If you 
  105.                      include the name of a *.ZDG file on the command line 
  106.                      after the batch file command, ZVIEWP will load that 
  107.                      *.ZDG file automatically. If the batch file is named 
  108.                      "MYZVIEW.BAT", the command "MYZVIEW 386NOT.ZDG" will 
  109.                      load the 386NOT.ZDG Buyers' Digest file directly into 
  110.                      ZVIEW from the current directory.)
  111.  
  112. SET PNLMONO=        (Clear the PNLMONO environment variable from memory.)
  113.  
  114.                                   ###
  115.  
  116.