cbarber54 0 Posted February 23, 2005 Hello All, I am attempting to automate data entry. Working fine until I reach a data field that is highlighted, indicating there is another window available for input. To access the hidden window you must "RIGHT arrow" and another window is available for input. I have run Autoit Window Info. and it doesn't show anything that i can see. I am using: Send("{Enter}") ; now at correct field Send("{right}") The second window should now display - but it doesn't. I cannot get to the hidden window. Thanks Share this post Link to post Share on other sites
buzz44 1 Posted February 23, 2005 Activates (gives focus to) a window. WinActivate ( "title" [, "text"] ) or Sends a string of characters to a control. ControlSend ( "title", "text", controlID, "string" [, flag] ) that can also send text to a minimized window qq Share this post Link to post Share on other sites
cbarber54 0 Posted February 23, 2005 Thanks for your help. That works. Share this post Link to post Share on other sites