| |
ebgreen
Posts: 4613
Score: 31
Joined: 7/12/2005
Status: offline
|
A WScript.exe safe version: dim progress 'clear the variable before starting progress = "" for each blah in blabbity progress = progress & "." 'WScript.stdout.write doesnt add a newline so its a continuous line of dots If LCase(Split(WScript.FullName, "\")(UBound(Split(WScript.FullName, "\")))) = "cscript.exe" Then WScript.StdOut.Write progress End If next
_____________________________
"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm http://www.visualbasicscript.com/m_47117/tm.htm
|
|