Support++ Here are more Control structures i like to use in PSPad:
_:label_ Defines a target for GOTO. (already there) _FOR _Iteration: repeats a command for each out of a specified set of files. _GOTO _Moves execution to a specified label. Labels are specified at the beginning of a line, with a colon (:likethis). _REM _comment: any text following this command is ignored _IF _Conditional statement, allows to branch the program execution _CALL _Pauses execution of one batch file, runs another, and returns to the old one and continues. (already there) EXIT Exits from Command.com and return to the program which launched it. (NOT needed ???) _SHIFT _Replaces each of the command-line variables with the consequent one (e.g. %0 with %1, %1 with %2 etc. ) _PAUSE _The PAUSE command prints the message "Press any key to continue..." to the screen and waits for the user to respond. _CHOICE _makes it possible to accept various user-responses. (There is an new command in NT4/W2k but the choice.exe ist still available ) _ECHO _ would be handy... isn't it? INFOs at/from http://en.wikipedia.org/wiki/COMMAND.COM#Control_structures http://www.cs.ntu.edu.au/homepages/bea/home/subjects/ith305/description.html Thank you Stefan -- <http://forum.pspad.com/read.php?2,40484,40556> PSPad freeware editor http://www.pspad.com
