我使用this示例在两个应用程序之间发送字符串。
当我第一次按下发送按钮时,字符串将被发送到接收器,但只接收到一部分字符串。
当我第二次按下发送按钮时,我得到"找不到窗口!"。 窗口就在屏幕上。当我第一次按下按钮时,它为什么会起作用,而不是第二次?
这是发件人:
procedure TfrmSender.SendString;
var
stringToSend : string;
copyDataStruct : TCopyDataStruct;
begin
Caption:= 'Sending';
stringToSend := 'About - Delphi - Programming';
copyDataStruct.dwData := 12821676; //use it to identify the message contents
copyDataStruct.cbData := 1 + Length(stringToSend) ;
copyDataStruct.lpData := PChar(stringToSend);
SendData(copyDataStruct) ;
end;
procedure TfrmSender.SendData(CONST copyDataStruct: TCopyDataStruct);
VAR
receiverHandle : THandle;
res : integer;
begin
receiverHandle := FindWindow(PChar('TfrmReceiver'), PChar('frmReceiver')) ;
if receiverHandle = 0 then
begin
Caption:= 'Receiver window NOT found!';
EXIT;
end;
res:= SendMessage(receiverHandle, WM_COPYDATA, Integer(Handle), Integer(@copyDataStruct));
if res= 0 then Caption:= 'Receiver window found but msg not hand';
end;
这是接收者:
procedure TfrmReceiver.WMCopyData(var Msg: TWMCopyData);
VAR
s : string;
begin
if Msg.CopyDataStruct.dwData = 12821676 then
begin
s := PChar(Msg.CopyDataStruct.lpData);
msg.Result := 2006; //Send something back
Winapi.Windows.Beep(800, 300);
Caption:= s;
end
end;
答案 0 :(得分:2)
总结评论有两个错误
1)(参见@Tom Brunberg)是长度设置不正确,这就是为什么你只得到一部分(大约一半的字符串)
应该是
copyDataStruct.cbData := sizeof( Char )*(Length(stringToSend) + 1 );
2)正在更改表单标题,使表达式
无效FindWindow(PChar('TfrmReceiver'), PChar('frmReceiver'))
因为第二个参数是表单的标题(在Delphi术语中)