![]() |
Prob mit Tastatur Hook
Hey leute,
ich versuche mich momentan an den Windows API Hooks. Das hab ich auch alles soweit verstanden nur mein tastatur hook macht irgentwie ein paar probleme.. also hier ma der Code für mein HookProc :
Delphi-Quellcode:
Das funktioniert soweit auch ganz gut nur wenn ich jetz "a" drücke steht das dann gleich 4 mal in meiner List1 ....
function MyKeyboardProc(nCode: integer; wparam: WPARAM; lParam: LPARAM):Integer; stdcall;
var PKey : Integer; begin Result:=CallNextHookEx(MyKeyboardHook,nCode,wParam,lParam); case nCode < 0 of True : exit; False : begin PKey:=wParam; case PKey of 65 : List1.Append('a'); end; end; end; end; Hab ich irgentwas falsch gemacht? Danke |
Re: Prob mit Tastatur Hook
Geraten: wParam/lParam auswerten, weil die Funktion evtl. beim Drücken, Loslassen, sonstwas aufgerufen wird?
|
Re: Prob mit Tastatur Hook
danke für die antwort,
und wie kann ich feststellen ob die taste grade gedrückt bzw. losgelassen wurde? |
Re: Prob mit Tastatur Hook
![]() |
Re: Prob mit Tastatur Hook
Danke für den Link!
|
Re: Prob mit Tastatur Hook
Versuch mal
Delphi-Quellcode:
[edit] schau dir bei Gelegenheit auch mal 'Ord' und 'Chr' in der OH an :zwinker:
function MyKeyboardProc(nCode: integer; wparam: WPARAM; lParam: LPARAM):Integer; stdcall;
var PKey : Integer; begin Result:= CallNextHookEx(MyKeyboardHook,nCode,wParam,lParam); if nCode = HC_ACTION then case wParam of WM_KEYDOWN: begin PKey:= wParam; case PKey of 65 : List1.Append('a'); end; end; WM_KEYUP : begin end; end; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:45 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz