Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8702071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:33:32+00:00 2026-06-13T02:33:32+00:00

After a lot of research on Stackoverflow and google, it seems that it’s difficult

  • 0

After a lot of research on Stackoverflow and google, it seems that it’s difficult to send a combination of keystroke to a background window using it’s handle. For example, I want to send CTRL + F. It seems that Sendmessage doesn’t work, and sendinput isn’t effective because the window needs the focus.

So the my last thought is about hooking: is there anyway to use that way to send combination?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T02:33:34+00:00Added an answer on June 13, 2026 at 2:33 am

    Ok I found a workaround, but it doesn’t work for all applications. Otherwise, it works with puTTY, the program I wanted to control with keystroke combination. And it works even if the application isn’t focused. So I’m done now!

    class SendMessage
    {
    [DllImport("user32.dll")]
    public static extern IntPtr PostMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
    
    public static void sendKeystroke()
    {
        const uint WM_KEYDOWN = 0x100;
        const uint WM_KEYUP = 0x0101;
    
        IntPtr hWnd;
        string processName = "putty";
        Process[] processList = Process.GetProcesses();
    
        foreach (Process P in processList)
        {
            if (P.ProcessName.Equals(processName))
            {
                IntPtr edit = P.MainWindowHandle;
                PostMessage(edit, WM_KEYDOWN, (IntPtr)(Keys.Control), IntPtr.Zero);
                PostMessage(edit, WM_KEYDOWN, (IntPtr)(Keys.A), IntPtr.Zero);
                PostMessage(edit, WM_KEYUP, (IntPtr)(Keys.Control), IntPtr.Zero);
            }
        }                           
    }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After doing lot of research in Google, I found this program: #include <stdio.h> int
After carrying out a lot of research I have come to the conclusion that
After doing some research on the subject, I've been experimenting a lot with patterns
I didn't know that installing ruby is such a pain After lot of trouble
After trying a lot i decided to ask question on stackoverflow, I create a
Even after a lot of research, I still don't figure out why I've got
Even after a lot of research, I still don't figure out why I've got
So after doing a lot of research I found base href, and I decided
First, let me begin by saying that I have done a lot of research
I need help with NFC and Android. After making a lot of research to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.