GMan Well-Known Member Licensed User Longtime User Feb 24, 2023 #1 I have the follwoing code to execute the CTRL + WINDOWS + N Keys. But does not work. The keystring is copied to the clipboard, but no execution B4X: Robby.RobotPaste("CTRL + WIN + N" & CRLF,50) OS is Windows 10 Does anyone has a suggestion ? Last edited: Feb 24, 2023
I have the follwoing code to execute the CTRL + WINDOWS + N Keys. But does not work. The keystring is copied to the clipboard, but no execution B4X: Robby.RobotPaste("CTRL + WIN + N" & CRLF,50) OS is Windows 10 Does anyone has a suggestion ?
Erel B4X founder Staff member Licensed User Longtime User Feb 26, 2023 #2 You are pasting a simple string. You need to use RobotSpecialKeyPress: https://www.b4x.com/search?query=RobotSpecialKeyPress Upvote 0
You are pasting a simple string. You need to use RobotSpecialKeyPress: https://www.b4x.com/search?query=RobotSpecialKeyPress
GMan Well-Known Member Licensed User Longtime User Feb 26, 2023 #3 Thx Erel, but the needed WINDOWS key isnt possible to capture - even the keycode is unknown. i solved it (less elegant) another way Upvote 0
Thx Erel, but the needed WINDOWS key isnt possible to capture - even the keycode is unknown. i solved it (less elegant) another way