Kobus Vdwalt
Kobus Vdwalt

Reputation: 347

How to get input from keyboard while not focussed Delphi

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.

Upvotes: 5

Views: 970

Answers (2)

Kobus Vdwalt
Kobus Vdwalt

Reputation: 347

I have since been busy and created a library for getting keystrokes in delphi. You can find it here : https://github.com/Kobusvdwalt/DelphiKeylogger

It still needs documentation but basicly you just call the olgetletter function.

Upvotes: 1

RRUZ
RRUZ

Reputation: 136391

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;

Upvotes: 6

Related Questions