Registriert seit: 1. Apr 2005
Ort: Bad Tölz
4.149 Beiträge
Delphi 2006 Professional
|
Re: Tastendruck simulation nach eingabe im Editfeld?
17. Jan 2007, 16:22
na dass is ja wohl echt nich schwer...
Delphi-Quellcode:
{BDS Code}
var
c: char;
for c in Edit1.Text do
begin
keybd_event(Ord(c), 0, 0, 0);
Keybd_Event(Ord(c),0,KEYEVENTF_KEYUP,0);
end;
Lukas Erlacher Suche Grafiktablett. Spenden/Gebrauchtangebote willkommen.
Gotteskrieger gesucht!
For it is the chief characteristic of the religion of science that it works. - Isaac Asimov, Foundation I, Buch 1
|
|
Zitat
|