10-15-2010, 08:21 PM
My problem is that I have to send Spacebar and End key stokes together to my CICS application.
We are using terminal emulator.
I tried folllwoing but didn’t work
and
Please advice
We are using terminal emulator.
I tried folllwoing but didn’t work
Code:
set WshShell = CreateObject(“WScript.Shell”)
WshShell.SendKeys “”"TE_END ”
set WshShell=nothing
and
Code:
set WshShell = CreateObject(“WScript.Shell”)
WshShell.SendKeys “{ } {END} ”
set WshShell=nothing
Please advice