home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 March / informatica-multimedia-facil-word-6.0.iso / win / manprog / rd_rw / read.me < prev   
Encoding:
Text File  |  1994-02-05  |  3.0 KB  |  90 lines

  1. RD&RW.EXE - RUN DOS AND RESTART WINDOWS version .90  2-5-1994
  2.  
  3. This program is for all of us who have at one time or another
  4. ran into a MS-DOS program that just will not run under Windows.
  5. RD&RW.EXE will exit Windows, run the problem MS-DOS application
  6. under real MS-DOS, and then upon completion of the MS-DOS app,
  7. restart Windows.  Please note that this application requires
  8. Windows 3.1 to operate correctly.
  9.  
  10. Create a new Program Manager item using this Command syntax:
  11.  
  12. Description: <Program Description>
  13.  
  14. Command Line: RD&RW <Program> <Parameters>
  15.  
  16. <Program> - fully qualified file name (including path); SEE NOTE BELOW.
  17.  
  18. <Parameters> - any command line parameters to pass
  19.  
  20. Example:
  21.  
  22. Description: Configuration Editor
  23.  
  24. Command Line: RD&RW C:\DOS\EDIT.COM C:\CONFIG.SYS
  25.  
  26. Note that the ".COM", ".EXE", or ".BAT" extension IS required.
  27.  
  28. NOTE: If you intend to use RD&RW to run a program that has configuration or
  29.       initialization files, you may have to use a special method to implement
  30.       it properly.  If this is the case, do the following:
  31.       
  32.       1> Create a batch file that changes to the correct directory and then
  33.          starts your program.
  34.          
  35.          EXAMPLE:  C:\MYDIR\MYPROG1.BAT
  36.          
  37.              @ECHO OFF
  38.              CD \MYDIR
  39.              REM IF MYPROG IS A BATCH FILE, THE FOLLOWING LINE SHOULD READ 'CALL MYPROG'
  40.              MYPROG
  41.              CD \
  42.              
  43.           (Note the 1 in the name of the batch file, so as to not confuse with the
  44.           program file)
  45.        
  46.        2> In the Command Line of the Program Manager Properties, type the following:
  47.        
  48.           RD&RW COMMAND.COM /C C:\MYPROG.BAT
  49.           
  50.           This step in essence starts another copy of DOS and then executes the batch
  51.           file named after the /C parameter.
  52.        
  53.  
  54. If you find this program useful, please support the shareware
  55. concept by sending $5.00 U.S. to me at the address below.  I
  56. will supply you with any version upgrades when they become
  57. available.  Please include your name and address!
  58.  
  59. Make checks payable to:
  60.  
  61.         Steve Jonath
  62.         P.O. Box 793
  63.         Middlefield, OH 44062
  64.  
  65. If you find any bugs or incompatibilities, please send me
  66. Compuserve mail.  My user ID is 70132,3251.
  67.  
  68. Copyright 1993 Steven Jonath. All Rights Reserved.
  69.  
  70. Steven Jonath disclaims all warranties as to this software, whether express
  71. or implied, including without limitation any implied warranties of
  72. merchantability, fitness for a particular purpose, functionality, data
  73. integrity or protection.
  74.  
  75. Windows is a trademark of Microsoft Corporation
  76.  
  77. MS-DOS is a trademark of Microsoft Corporation.
  78.  
  79. Trademarks of other companies mentioned in this documentation appear for
  80. identification purposes only and are the property of their respective
  81. companies.
  82.  
  83. History:
  84.  
  85.     version .90 - Had problems with running programs that have configuration
  86.                   files in different directories.  These problems are inherent
  87.                   to Windows, but a possible workaround has been included in 
  88.                   this readme file.
  89.  
  90.