D
dick_chan
Unregistered / Unconfirmed
GUEST, unregistred user!
我的程序可向notepad發送F1模擬按鍵調出幫助.
procedure TForm1.Button1Click(Sender: TObject);
begin
hnotepad:=FindWindow('notepad',nil);
if hnotepad <> 0 then
PostMessage(hNotePad,WM_keydown,vk_f1, 0)
else
showmessage('file not find');
end;
但卻無法向outlook express 6發信息,代碼修改為
hnotepad:=FindWindow('Outlook Express Browser Class',nil);
請問為什麼??如何解決??
procedure TForm1.Button1Click(Sender: TObject);
begin
hnotepad:=FindWindow('notepad',nil);
if hnotepad <> 0 then
PostMessage(hNotePad,WM_keydown,vk_f1, 0)
else
showmessage('file not find');
end;
但卻無法向outlook express 6發信息,代碼修改為
hnotepad:=FindWindow('Outlook Express Browser Class',nil);
請問為什麼??如何解決??