mnsam
10 years agoContributor
check the status of Call Sys.Desktop.Key
I wanted to check the status of Call Sys.Desktop.KeyDown(sInstrunctionvalue) and Call Sys.Desktop.KeyUp(sInstrunctionvalue) so, mainly to confirm that intended character was typed.
i tried using async call :
Set CallResultObj = Runner.CallObjectMethodAsync(Sys.Desktop,"Keydown",sInstrunctionvalue)
Set CallResultObj = Runner.CallObjectMethodAsync(Sys.Desktop,"KeyUp",sInstrunctionvalue)
however normal keyboard characters are not getting typed.
TC 10.30.1145
issue resolved, had not used ASCII conversation
Runner.CallObjectMethodAsync(Sys.Desktop,"KeyUp",Asc(aqString.ToUpper(sInstructionValue)))