Sending Remote Keys on Windows Platform to working with applications

MT 51 Reputation points
2021-11-16T13:29:29.293+00:00

I am following the following url to send keys
https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkeys.send?view=netframework-4.8

Following Keys send successfully :
To select All. ctrl + A is the command. And send remote key Like this "^A" and is working.

But for the command Fn + Alt + F10. I am not able to figured it out.
I tried {%}{F10} or %F10 but it is not working.

Please Advise.

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,681 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,796 Reputation points
    2021-11-17T09:15:23.523+00:00

    Hi there,

    The plus sign (+), caret (^), percent sign (%), tilde (~), and parentheses () have special meanings to SendKeys. To specify one of these characters, enclose it within braces ({}). For example, to specify the plus sign, use "{+}". To specify brace characters, use "{{}" and "{}}". Brackets ([ ]) have no special meaning to SendKeys, but you must enclose them in braces.

    You can dig out more from here https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkeys.send?view=netframework-4.8

    -----------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.