home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem this file is used by the WYSI-Help (R) Help editor
- rem to convert an .RTF (Rich text format) file to Windows 3
- rem help format. The help compiler should be either in the same directory
- rem as the .RTF file or in the dos PATH statement, or you can edit
- rem this bat file to reflect the path, and, if necessary, the name of the help
- rem compiler of future versions of Windows
- echo ──────────────────────────────────────────────────────────────────────────
- echo Conversion of %1.RTF
- echo to %1.HLP
- echo ──────────────────────────────────────────────────────────────────────────
- echo.
- rem change the line after this one in case the command does not match
- HC %1
- rem change the line before this one in case the command does not match
- echo.
- echo
- echo.
- echo ──────────────────────────────────────────────────────────────────────────
- echo Conversion completed
- echo.
- echo Press any key to continue...
- echo ──────────────────────────────────────────────────────────────────────────
- pause >NUL
- exit