Op donderdag 1 september 2016 12:18:07 UTC+2 schreef
il.pall...@gmail.com:
You should either use [exec] or [fileevent]:
set output [exec Y:/TestStdOut.vbs]
(then you get the output directly, but if the VBS command takes a while, your application freezes)
If you use [open "|...] you need to register an event handler with [fileevent]. See the Wiki (
wiki.tcl.tk) for examples. The advantage is that your application can continue, while this VB script is running in the background.
Regards,
Arjen