Alan 0 Posted April 19, 2005 I want to increment a number in a msgbox each time my script loops so that it will say "1 files saved" and then "2 files saved" and so on. Can this be done? And if so, can someone supply the script as I am very new to this? Thanks, Alan Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted April 19, 2005 I want to increment a number in a msgbox each time my script loops so that it will say "1 files saved" and then "2 files saved" and so on. Can this be done? And if so, can someone supply the script as I am very new to this?Thanks,Alan<{POST_SNAPBACK}>$Count = 1 While 1 Msgbox(0,"Filesave","Counting " & $Count) $Count = $Count + 1 WEnd Share this post Link to post Share on other sites
Alan 0 Posted April 19, 2005 Thanks! I got it working... Share this post Link to post Share on other sites