HankHell Posted February 14, 2018 Posted February 14, 2018 (edited) was wondering why is it that when GUICtrlSetData is put into a GUICtrlCreateInput field, it won't set the $variable automatically until I edit the data in the field. when "123" is already in the field, if I erase "3" then re-add "3" it'll register the variable as "123". just thought this was kind of odd. I would love it if I could use the set data in the field to register as the $variable without editing the text. Edited February 14, 2018 by HankHell
Zedna Posted February 14, 2018 Posted February 14, 2018 (edited) You have to use GUIRegisterMsg($WM_COMMAND, "WM_COMMAND") and catch EN_CHANGE event and there store value into your variable Look here for example how to do this: Edited February 14, 2018 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
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