1.

Solve : need help to create simple loop?

Answer»

Hello
I need a help to do a smple LOOP in Ms-DOS \windows XP
A loop to repeat excute file for 25 times by increasing 1 by 1( from 1 to 25)
and is it possible to open a file its name is a number corresponding to the variable no. each time(1,2,3...25)??
for example in basic:

for n=1 to 25
run n.txt
next n
end

thank you very much , I have limited experience with Ms-Dos, Please help meYou mean something like this...

Code: [Select]FOR /L %%G IN (1,1,25) DO start %%G.txt
8-)fffreakYessssssss Dear
Thats what I need
THANX a lot[size=14][/size]Please don't call me that . Also, TRY not to use DIFFERENT font colors, if you do you will get less responses to a particular problem, just stick with the default. And your welcome .

8-)fffreakOk
& thanx again



Discussion

No Comment Found