Options List Style ‐ Process selected items in view sequence - tablacus/TablacusExplorer GitHub Wiki
Process selected items in sequence when they are specified through:
- Type Selected items, or
- %Selected% environment variable
Example
echoparms.bat
@echo off
:LOOP
if {%1}=={} goto :END
echo %1
shift
goto :LOOP
:END
pause
No (Default)
Not in sequence
Yes
In sequence