therks Posted March 22, 2018 Posted March 22, 2018 (edited) So I'm working on an application and I've hot keyed all the numbers, and for some reason this particular combination doesn't work. All the other numbers with Ctrl+Shift work fine, and all other combinations of modifiers work with 0. Has anyone else encountered this? It's very strange. Guicreate('', 300, 300) $button = GUICtrlCreateButton('Button', 0, 0) Dim $accel = [ [ '^+0', $button ] ] GUIsetaccelerators($accel) Do $gm = guigetmsg() If $gm = $button then msgbox(0,'','test') Until $gm = - 3 Sorry for the ugly code, i typed this up on my phone. 😅 Edited March 22, 2018 by therks My AutoIt Stuff | My Github
Bilgus Posted March 22, 2018 Posted March 22, 2018 maybe Ctrl Shift 0 Is in use by the OS yep.. https://support.microsoft.com/en-us/help/967893/input-method-editor-keyboard-shortcut-ctrl-shift-0-switches-the-input therks 1
therks Posted March 22, 2018 Author Posted March 22, 2018 Huh, I just assumed it was an AutoIt issue. Thanks! My AutoIt Stuff | My Github
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