July 19, 200521 yr Is it possible to include a number of statements to be executed in a FOR loop?For example:FOR /L %%A in (1,1,10) DO {statement1statement2statement3}All help is greatly appreciated.Johnny
July 19, 200521 yr replace { } by ( ) :FOR /L %%A in (1,1,10) DO (statement1statement2statement3)and yes, the openning prenthesis must be on the FOR line.you should read the included help :for /?if /?set /?cmd /?and so on...bye
Create an account or sign in to comment