home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- CLS
- ECHO This batch file assumes a setup file named "TEST"
- ECHO otherwise, the merge file will not be generated.
- PAUSE
- dperfbv /test
- CLS
- IF ERRORLEVEL 2 GOTO no_wp
- ECHO Creation of merge file successful!
- ECHO Word Perfect can be started with a macro that
- ECHO will do the merge. The following assumes that
- ECHO the macro is named "MERGE".
- PAUSE
- wp /m-merge
- GOTO END
- :no_wp
- ECHO An error prevented the creation of the merge file.
- PAUSE
- :end
-
-