Deathboy 0 Posted May 16, 2010 Hi there I can't find out how to send to a specific edit in a GUI.. If I got a GUI named windows security and there is an class: edit with Instance:2 class: edit with Instance:3 class: button with Instance:2 How can I send text to it and how can I push the button, without sending TAB and text and TAB and enter to push the buttons I've searched the helpfile without any luck Thanks for any help Share this post Link to post Share on other sites
Yoriz 6 Posted May 16, 2010 Like this ControlSetText("windows security", "", "Edit2", "Edit2's new text here") ControlSetText("windows security", "", "Edit3", "Edit3's new text here") ControlClick("windows security", "", "Button2") GDIPlusDispose - A modified version of GDIPlus that auto disposes of its own objects before shutdown of the Dll using the same function Syntax as the original.EzMySql UDF - Use MySql Databases with autoit with syntax similar to SQLite UDF. Share this post Link to post Share on other sites
Deathboy 0 Posted May 16, 2010 Like this ControlSetText("windows security", "", "Edit2", "Edit2's new text here") ControlSetText("windows security", "", "Edit3", "Edit3's new text here") ControlClick("windows security", "", "Button2") Ahh Thanks alot Share this post Link to post Share on other sites