下面,图老师小编带您去了解一下將字串传入到Windows目前窗口Cursor所在位置,生活就是不断的发现新事物,get新技能~
【 tulaoshi.com - 编程语言 】
网络ID:wnhoo or sos_admin
网名:e梦缘
Mail:wnhoo@163.com
风花雪月 e梦情缘
如下:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/) function GetSysFocus : integer;
Var
hOtherWin,OtherThreadID,hFocusWin : integer;
Begin
hOtherWin := GetForegroundWindow;
OtherThreadID := GetWindowThreadProcessID( hOtherWin, nil);
If AttachThreadInput( GetCurrentThreadID, OtherThreadID, true ) Then
Begin
hFocusWin := GetFocus;
result := GetFocus;
AttachThreadInput( GetCurrentThreadID, OtherThreadID, False );
End
else
result := getFocus;
End;
procedure TForm1.Timer1Timer(Sender: TObject);
var
s:string;
begin
s:='test';
SendMessage(GetSysFocus, WM_SETTEXT,0,longint(PCHAR(S)));
end;
来源:http://www.tulaoshi.com/n/20160219/1602144.html
看过《將字串传入到Windows目前窗口Cursor所在位置》的人还看了以下文章 更多>>