winston Posted August 13, 2016 Share Posted August 13, 2016 (edited) Is the controlID ignored on the controlsend? data only goes to whoever has focus, Not understanding what the controlID is doing on the controlsend. #include <GUIConstantsEx.au3> #include<msgboxconstants.au3> Global $hgui = GUICreate("focus & send",300,300) Global $id_a = GUICtrlCreateInput('aaaa',0,0) Global $id_b = GUICtrlCreateInput('bbbb',0,40) Global $id_c = GUICtrlCreateInput('cccc',0,80) guisetstate() ControlFocus('',"",$id_a) ; focus is on a Sleep(2000) ControlSend('',"",$id_c,'dddd') ; send data to c ControlFocus('','',$id_b) ; now focus on b sleep(2000) ControlSend('',"",$id_c,'dddd') ; send data to c sleep(2000) MsgBox($mb_ok,'blank','never got any data to C') Edited August 14, 2016 by Melba23 Added code tags Link to comment Share on other sites More sharing options...
BrewManNH Posted August 15, 2016 Share Posted August 15, 2016 The control ID on that control is an internal AutoIt control ID and not a Windows ID, AFAIK. If you're trying to send data to a control that is in a GUI that was created with AutoIt, use AutoIt's GUICtrlSetData function instead. winston 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
winston Posted August 15, 2016 Author Share Posted August 15, 2016 Between the controlfocus & controlsend, I was able to accomplish what I wanted. running code in an WM_COMMAND exit, wanted to get out quickly, but trigger another event via controlsend with an {enter} to complete operation that will involve some wait time. ControlFocus immediately followed by ControlSend seems to work. Not truly trusting this I have since gone to a switching method, set a flag in WM_command routine, scan for flag in outside routine, turn it off when finished. This seems quite reliable. Thank you for your input on ControlSend. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now