View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming,comp.lang.basic.visual.misc
WildIrish WildIrish is offline
external usenet poster
 
Posts: 1
Default Application.SendKeys won't work with Remote Desktop????

I'm simply executing the following and it won't work. DoEvents
I threw in for testing as i saw reference that it may help,
plus the time delay was a suggestion, none of which solves
the fact that NO data (via SendKeys) can be sent to a Terminal Services
or Remote Desktop connection window. Suggestions?
--------------------------------
'switch App focus to the Fundware App
AppActivate "Intuit FundWare"

DoEvents
'wait 10 seconds
Application.Wait (Now + TimeValue("0:00:10"))
DoEvents

'I even tried Application.SendKeys, neither work.
SendKeys "test", True
DoEvents
-------------------------------
Thanks for your help!
-Brendan