Thema
:
Delphi
Mausklick abfangen ohne Hook
Einzelnen Beitrag anzeigen
busybyte
Registriert seit: 15. Sep 2006
165 Beiträge
#
5
Re: Mausklick abfangen ohne Hook
12. Jan 2010, 21:29
zusammenfalten
·
markieren
Delphi-Quellcode:
procedure
TForm1.Timer1Timer(Sender: TObject);
var
w:cardinal;
S:
String
;
begin
SetCaptureControl(
nil
);
mouse.Dispatch(w);
label1.caption:= inttostr(mouse.CursorPos.X);
label2.caption:=inttostr(mouse.CursorPos.Y);
S:= '
Maus Up
';
if
(getasynckeystate(VK_LBUTTON)<>0)
then
S:='
Maus Down
';
label3.caption:=S;
end
;
I love DiscCat
Zitat
busybyte
Öffentliches Profil ansehen
Besuche die Homepage von busybyte!
Mehr Beiträge von busybyte finden