Delphi-PRAXiS
Seite 4 von 4   « Erste     234   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Tastendruck -> Mausklicks (https://www.delphipraxis.net/105080-tastendruck-mausklicks.html)

Saturos 16. Dez 2007 12:52

Re: Tastendruck -> Mausklicks
 
Ich habs jetzt:
Delphi-Quellcode:
procedure TForm1.WMHotKey(var Message:TMessage);
begin
 If Message.wParam=HotKeyID then begin
    if (not klick) and (anaus) then begin
     klick:= true;
     GetCursorPos(curs);
     timer1.Enabled:=true
     end
    else if klick then  
      timer1.Enabled:=false;  
   end;
end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:03 Uhr.
Seite 4 von 4   « Erste     234   

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz