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

  • Home
  • SEARCH
  • 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 8601555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:52:17+00:00 2026-06-12T01:52:17+00:00

I want to do an app which replaces every input if it matches a

  • 0

I want to do an app which replaces every input if it matches a pattern.
For example if user press LeftMouseButton + Ctrl, the program will change it into right click, and send only that to the current active window, or capturing window.

The question is how can i solve it in c#?

  • 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-12T01:52:18+00:00Added an answer on June 12, 2026 at 1:52 am

    You will need to implement a class like this, you have to adapt it to support mouse clicks to fulfill your needs, but it should show you some first steps.

    public class KeyConverter {
                //All conversions are stored in this dictionary.
        private Dictionary<Keys, Keys> conversions = new Dictionary<Keys, Keys>();
    
        public KeyConverter() {
            //this conversion will convert every Ctrl+C signal into Ctrl+V
            conversions.Add(Keys.C | Keys.Control, Keys.V | Keys.Control);
        }
    
        public Keys Convert(Keys keys) {
            if (conversions.ContainsKey(keys))
                return conversions[keys];
            else
                return keys;  //return the input if no conversion is available
        }
    }
    

    Add the conversion you need to the conversions-Dictionary. Subscribe to an event that observes key strokes and call method Convert with currently pressed Keys.
    Send the returned keys to your system using

    [DllImport("user32.dll")]
    public static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, uint dwExtraInfo);
    
    public void SendKey(Keys keys){
        foreach(Keys key in Enum.GetValues(typeof(Keys)))
            if(keys.HasFlag(key))
                keybd_event((byte)key, 0, 0, 0); //press key
        foreach(Keys key in Enum.GetValues(typeof(Keys)))
            if(keys.HasFlag(key))
                keybd_event((byte)key, 0, 0x2, 0); // release key
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to develop app which will recognize object(like monument or something) present in
I want to create a Web app which would allow the user to upload
I have a web app which replaces few img's with other img's. For example:
I want to develop an app which can Block the Invocation of some Blackberry
I Want to develop a app which can identify corporate email accounts and when
I want to create an app which plays videos using the RTP protocol. I
i want to make an app which can add the file properties of a
I want to create an iPhone app which makes calls to a web service.
I have a .exe app which I want to understand better - I can
I want to implement an android app which compares recorded audio files with our

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.