home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 12
/
CD_ASCQ_12_0294.iso
/
demoware
/
ddtec
/
tools
/
hmtohlp.ol_
/
hmtohlp.ol
Wrap
Text File
|
1992-06-10
|
1KB
|
26 lines
@echo off
rem this file is used by the Help Maker (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 de %1.RTF
echo vers %1.HLP
echo ──────────────────────────────────────────────────────────────────────────
echo.
rem change the line after this one in case the command does not match
HC31 %1
rem change the line before this one in case the command does not match
echo.
echo
echo.
echo ──────────────────────────────────────────────────────────────────────────
echo Conversion terminée
echo.
echo appuyez sur une touche pour continuer...
echo ──────────────────────────────────────────────────────────────────────────
pause >NUL
exit