Registriert seit: 17. Jul 2007
Ort: Ulm
258 Beiträge
Delphi 7 Enterprise
|
Re: MouseClick simulieren?
27. Dez 2007, 02:12
Delphi-Quellcode:
// Simulate the left mouse button down
// Linke Maustaste simulieren
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
// Simulate the right mouse button down
// Rechte Maustaste simulieren
mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0);
Quelle: http://www.swissdelphicenter.ch/de/showcode.php?id=360
|
|
Zitat
|