procedure TForm
var
hParent
begin
Memo
Memo
try
//找發送消息的QQ窗口
hParent := FindWindow(nil
//然後找回話時用的編輯窗口
hMemo := ChildWindowFromPointEx(hParent
//找到
hButton := FindWindowEx(hParent
if (hParent =
MessageBox(Handle
else
begin
//向發送消息中的回話編輯框發送粘貼消息
SendMessage(hMemo
//向
SendMessage(hButton
end;
except
//如果發生意外錯誤給出提示
MessageBox(Handle
end;
end;
procedure TForm
var
hParent
begin
Memo
Memo
try
//找對話模式中窗口
hParent := FindWindow(nil
//找到對話模式中的回話編輯框
hMemo := ChildWindowFromPointEx(hParent
hButton := FindWindowEx(hParent
//如果有任何一個句柄沒有找到都不能完成發送
if (hParent =
MessageBox(Handle
else
begin
//向對話模式中的回話編輯框發送粘貼消息
SendMessage(hMemo
//向
SendMessage(hButton
end;
except
//如果發生意外錯誤給出提示
MessageBox(Handle
end;
end;
end
From:http://tw.wingwit.com/Article/program/Delphi/201311/24922.html