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 8930549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:54:58+00:00 2026-06-15T08:54:58+00:00

I would like to know how to get keyboard input in my delphi application

  • 0

I would like to know how to get keyboard input in my delphi application while its not focussed.
The application i am programming is going to be taking a screenshot while i am in game.

I have wrote the screen capture code but i am missing this last piece any advice would be appreciated.

  • 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-15T08:54:59+00:00Added an answer on June 15, 2026 at 8:54 am

    You can register a hotkey (using the RegisterHotKey and UnregisterHotKey functions) and use the WM_HOTKEY message to intercept when the key is pressed.

    Try this sample

    type
      TForm3 = class(TForm)
        procedure FormCreate(Sender: TObject);
        procedure FormDestroy(Sender: TObject);
      private
        { Private declarations }
      public
         procedure WMHotKey(var Message: TMessage); message WM_HOTKEY;
      end;
    
    var
      Form3: TForm3;
    
    implementation
    
    
    {$R *.dfm}
    
    
    { TForm3 }
    
    const
      SaveScreeenHK=666;
    
    procedure TForm3.FormCreate(Sender: TObject);
    begin
     RegisterHotKey(Handle, SaveScreeenHK , MOD_CONTROL, VK_F10);
    end;
    
    procedure TForm3.FormDestroy(Sender: TObject);
    begin
      UnregisterHotKey(Handle, SaveScreeenHK);
    end;
    
    procedure TForm3.WMHotKey(var Message: TMessage);
    begin
     //call your method here
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know how to get local notifications while my application's NSTimer
I would like to know how to get the distance/offset/position of an element relative
I would like to know what events get executed (if any) after a user
I would like to know how to get data from preference activity when my
I would like to know how to get my UIWebView to show these characters
I would like to know the code which can enable me to get a
I would like to get to know how to redirect output of some program
i would like to know hot to get the select on the same line
I would like to know how to get the date and time difference in
I would like to know how can I get from database sql a value

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.