我一直在尝试将击键发送到Delphi的记事本窗口。 那是我到目前为止的代码:
program Project1;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
windows,
messages;
var
H : HWND;
begin
H := FindWindowA(NIL, 'Untitled - Notepad');
if H <> 0 then begin
SendMessage(H, WM_KEYDOWN, VK_CONTROL, 1);
SendMessage(H, WM_KEYDOWN, MapVirtualKey(ord('v'), 0), 1);
SendMessage(H, WM_KEYUP, MapVirtualKey(ord('v'), 0), 1);
SendMessage(H, WM_KEYUP, VK_CONTROL, 1);
end;
end.
我也找到了这个例子:
program Project1;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
windows,
messages;
var
H : HWND;
I : Integer;
s : String;
begin
h := FindWindowA(NIL, 'Untitled - Notepad');
if h <> 0 then
begin
h := FindWindowEx(h, 0, 'Edit', nil);
s := 'Hello';
for i := 1 to Length(s) do
SendMessage(h, WM_CHAR, Word(s[i]), 0);
PostMessage(h, WM_KEYDOWN, VK_RETURN, 0);
PostMessage(h, WM_KEYDOWN, VK_SPACE, 0);
end;
end.
如何模拟/发送CTRL + V到Parentwindow,以便它还可以与其他应用程序一起使用? 并非每个应用程序都具有与记事本相同的ClassNames和控件。
答案 0 :(得分:4)
如果将SendMessage()切换到PostMessage(),它将起作用:
uses
Winapi.Windows, Winapi.Messages;
procedure PasteTo(const AHWND: HWND);
begin
PostMessage(AHWND, WM_PASTE, 0, 0);
end;
var
notepad_hwnd, notepad_edit_hwnd: HWND;
begin
notepad_hwnd := FindWindow(nil, 'Untitled - Notepad');
if notepad_hwnd <> 0 then
begin
notepad_edit_hwnd := FindWindowEx(notepad_hwnd, 0, 'Edit', nil);
if notepad_edit_hwnd <> 0 then
PasteTo(notepad_edit_hwnd);
end;
end.
根据this thread,我相信您不能使用SendMessage()/ PostMessage()来发送键修饰符的状态(在本例中为CTRL),并且您唯一的选择是使用SendInput(),但是这只适用于目前有焦点的窗口。