bradvexille 0 Posted December 11, 2003 do u know the syntax for for loops? for $x = 10 to 100 ,... how to i tell it the "stepval" ? its not in the help file.. for $x = 10 to 100, 10 gives me error... for $x = 10 to 100 10 also gives me error i need it to add 10 to $x every loop... ALSO, is it possible to do something like x = x + 10? giving me errors... thx Share this post Link to post Share on other sites
bradvexille 0 Posted December 11, 2003 ur always there for me larry thx Share this post Link to post Share on other sites
Jon 1,009 Posted December 11, 2003 ALSO, is it possible to do something like x = x + 10?giving me errors...thx $x = $x + 10 Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Share this post Link to post Share on other sites