home *** CD-ROM | disk | FTP | other *** search
/ MPC Wizard 3.0 / WIZARD3_0.ISO / drivers / graf_h_o / ncr / disk1 / smivesa / setmode.doc next >
Text File  |  1992-12-11  |  4KB  |  98 lines

  1. **************************************************************************
  2.                                VGA Utility
  3.                                SETMODE.EXE
  4. **************************************************************************
  5.  
  6. SetMode.exe is a utility to set up high resolution text for WordStar.
  7.  
  8. To use the Setmode.exe utility, you must first install SoftMode.sys.
  9. See the SoftMode.Doc file for details.
  10.  
  11.  
  12. The Setmode program is used to change the number of columns and
  13. rows displayed on the video screen. The command syntax is:
  14.  
  15.     SETMODE columns,rows
  16.  
  17. Valid column and row values are:   Columns  Rows
  18.                                    -------  ----
  19.                                       80    25,50
  20.                                      132    25,50
  21.  
  22. For example, SETMODE 132,50 will set the display to 132 columns
  23. by 50 rows. To restore a normal display type SETMODE 80,25.
  24.  
  25. Either columns or rows are optionals. Using the command SETMODE ,25
  26. would change the number of rows to 25 but would leave the columns
  27. unchanged.
  28.  
  29. Help is displayed by executing SETMODE with no parameters.
  30.  
  31.  
  32. WordStar and WSCHANGE:
  33.  
  34. In order to modify the number of rows and columns displayed by Wordstar,
  35. run the WSCHANGE utility to re-configure your copy of Wordstar.
  36.  
  37. To change the colors, choose the CONSOLE and then the Video attributes
  38. option from the WSCHANGE menu.  If you have a monochrome monitor, be
  39. sure to select the Monochrome display defaults.
  40.  
  41. To change the resolution, choose the CONSOLE and then the MONITOR option
  42. from the WSCHANGE menu. Then elect to change SCREEN SIZE.  You may now
  43. enter the height and width of the screen.  The following resolutions
  44. are supported:
  45.  
  46.          80 columns with 25 rows
  47.          80 columns with 50 rows
  48.         132 columns with 25 rows
  49.         132 columns with 50 rows
  50.  
  51. After entering the desired resolution, exit WSCHANGE.  Before using
  52. Wordstar, you must activate the setmode utility for the resolution you
  53. selected during WSCHANGE.  To do this, type the setmode path name followed
  54. by the number of columns and rows.  For example, if 132 columns and 25
  55. rows where set with WSCHANGE and SETMODE is located in the default
  56. directory, you would type:
  57.  
  58.     C:\NCRVGA\SETMODE 132,25
  59.           where 132 = # of columns
  60.           and 25 = # of rows
  61.  
  62. Next, activate Wordstar by typing WS.  When you are finished with Wordstar,
  63. exit the application normally.  After exiting Wordstar, you will probably
  64. want to restore your screen to its original number of columns and rows.
  65. To do this, repeat the SETMODE command using 80 columns and 25 rows
  66. (example, C:\NCRVGA\SETMODE 80,25).
  67.  
  68. Creating WORDSTAR.BAT
  69.  
  70. By creating a WORDSTAR.BAT file, you can have the high resolution mode
  71. automatically loaded when you activate Wordstar.  When you exit Wordstar,
  72. the display will be returned to the default 80 x 25 mode.
  73. Create the WORDSTAR.BAT file using any editor capable of saving a
  74. file as ASCII text.  Create a file named WORDSTAR.BAT.
  75. The WORDSTAR.BAT file should contain the following commands:
  76.  
  77.         SETMODE - command to match the screen size set
  78.                       when running
  79.         WSCHANGE (example,  SETMODE 132,50 for
  80.                    132 columns, 50 rows).
  81.         WS - command to run Wordstar
  82.  
  83.         SETMODE command to reset the text mode to the original screen
  84.         display mode (example,  SETMODE 80,25).
  85.  
  86. A sample WORDSTAR.BAT is shown below:
  87.         C:\NCRVGA\SETMODE 132,50
  88.         WS
  89.         C:\NCRVGA\SETMODE 80,25
  90.  
  91. Older Versions of Wordstar
  92.  
  93. To set the screen size with older versions of Wordstar, consult your setup
  94. manual for instructions on how to change the column/row setting in Wordstar.
  95. Follow the above procedures for using Setmode.
  96.  
  97.  
  98.