Possible to send buffer as program command line parameter?
Posted: 22 Aug 2012, 08:05
One of the predefined actions is Run Application, so you can run e.g. myprogram.exe foo
Is it possible to send the buffer e.g. myprogram.exe [Buffer] ?
While writing this post I realised it might be possible to do this as a script (untested):
Dim wsh
Set wsh = CreateObject("Wscript.Shell")
wsh.Run "myprogram.exe " & HIDMacros.GetBuffer
Is there a better or faster way I should be using?
Is it possible to send the buffer e.g. myprogram.exe [Buffer] ?
While writing this post I realised it might be possible to do this as a script (untested):
Dim wsh
Set wsh = CreateObject("Wscript.Shell")
wsh.Run "myprogram.exe " & HIDMacros.GetBuffer
Is there a better or faster way I should be using?