I'm hacking together a .vbs that converts a series of .csv to .tsv
I need it to do a pop-up or other message telling me which file it is up to.
I've tried these:
set WshShell = CreateObject("WScript.Shell")
Result = WshShell.Popup("Converting " & objFile.Name & " ..." , 3 , , 64)
... and ...
wscript.echo("Hello")
But I get a Pop-Up where it waits for me to hit OK
I don't want it to wait - I just want it to say the message and then disappear by itself. Waiting for the OK also holds up the script, so if I have to process a batch of 100 files, someone has to sit there and keep hitting OK
I can run without a status, but then I don't know what it is doing....
Thanks
Open in new window
~bp