I am trying to use the SendKeys() command to another window with my VB6 app.
SendKeys()
What I wanted is to click a button, and then have 10 seconds to go to the o
Replacement for VB6 SendKeys is WScript.Shell SendKeys, like this:
Set WshShell = CreateObject("WScript.Shell") WshShell.SendKeys "1{+}"
See MSDN for help.