W
wp231957
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);<br>var<br> notepadhandle:thandle;<br> childhandle,child:thandle;<br> s:string;<br> length1:integer;<br> i:integer;<br>begin<br> s:='1234中asdfg国258';<br> length1:=length(s);<br> i:=1;<br> if winexec('c:/windows/notepad.exe',SW_NORMAL)>31 then begin<br> notepadhandle:= findwindow('notepad',nil);<br> if notepadhandle<>0 then begin<br> childhandle:=findwindowex(notepadhandle,0,'edit',nil);<br> if childhandle<>0 then begin<br> while i<=length1 do begin<br> if ord(s)>127 then begin<br> sendmessage(childhandle,WM_CHAR,ord(s),0);<br> sendmessage(childhandle,WM_CHAR,ord(s[i+1]),0);<br> i:=i+2;<br> end else begin<br> sendmessage(childhandle,WM_CHAR,ord(s),0);<br> inc(i);<br> end;<br> end;<br> end;<br> END;<br> end;<br>end;