- Aug
- 2,056
- 83
From the help file;
It would be great to allow the sort to be ascending or descending.
To get this;
I presently have to do this;
Joe
Code:
If you set the optional 7th parameter sorted to 1, the list will be sorted alphabetically.
It would be great to allow the sort to be ascending or descending.
To get this;
I presently have to do this;
Code:
sort /r %temp\c2p.txt /o %temp\c2p.tmp
del /q %temp\c2p.txt
ren /q %temp\c2p.tmp %temp\c2p.txt
*set results=%@select[%temp\c2p.txt,1,1,20,80,Select a file from the list]
Joe