Given:
Dim sh As Object
Set sh = CreateObject("WScript.Shell")
sed = "c:\BIPApps\ssed\ssed s/\x0D//g c:\old.txt > c:\new.txt"
Anybody got any idea why if this works ...
ret = Shell("cmd /c " & sed) ' returns PID
... this doesn't?
ret = sh.Run(sed, 0, True) ' returns 2
Thanks to all,
Nick.