How do I resolve the "Subscript Range in access or evaluation"
I get error
"Subscript Range in access or evaluation of 'openDTs[ /*###*/1]' , openDTs[/*###*/1]"
but it works on some folder and I don't get the error...Below is my JSL
JSL "
dir = Set Default Directory("path");
Print(dir);
files = Files In Directory("path");
For(i = 1, i <= N Items(files), i++,
If(Ends With(files[i], ".txt"),
Open(
files[i],
Import Settings(
End Of Line(CRLF
...