/* ------------------------------------------------------------------ */ /* DelClass.CMD - REXX program to kill one or more WPS classes */ /* */ /* (c) Copyright Bernd Schemmer 1994 */ /* */ /* Author: */ /* Bernd Schemmer */ /* Stalburgstr. 14 */ /* D-60318 Frankfurt am Main */ /* Bernd.Schemmer@gmx.de */ /* */ /* Distribution: */ /* This code may be distributed freely and used in other programs. */ /* Please give credit where credit is due. */ /* */ /* Usage: */ /* DelClass */ /* */ /* Description: */ /* DelClass shows a dialog with all registered WPS classes from */ /* which you can choose one WPS class and select OK to delete */ /* the class (select CANCEL to leave DelClass). */ /* */ /* Notes: */ /* This program needs the DLL REXXUTIL and the IBM VREXX package. */ /* */ /* Based on TEMPLATE.CMD v2.51, TEMPLATE is (c) Bernd Schemmer, 1994 */ /* Stalburgstr 14, 60318 Frankfurt, Germany, Bernd.Schemmer@gmx.de */ /* */ /* ------------------------------------------------------------------ */ /* ------------------------------------------------------------------ */ /* change the following values to your need */ global. = '' global.__Version = 1.0 /* Version of YOUR program */ global.__SignOnMsg = 0 /* set to 0 if you do not want the */ /* program start and end messages */ global.__NeedCID = 0 /* set to 1 if you need CID support */ global.__NeedColors = 1 /* set to 1 if you want colored msgs */ global.__NeedPatchCheck = 1 /* set to 1 if you want the program */ /* to search for a patched version of */ /* this program */ /*** End of variables to change ***/ /*** End of Part 1 of the source code of TEMPLATE.CMD ***/