我一直在寻找从 Microsoft Visual C++ 向另一个在 Delphi 中创建的应用程序发送消息 2 小时。
在 delphi 中,我知道如何读取数据。但我不知道如何在 MVC++ 中发送消息
我希望你能给我一个代码。
因此,对于下一个代码,我想要在 Microsoft Visual Studio C++ 2010 中进行翻译,我的项目是一个控制台项目。
const
MY_MESSAGE = WM_USER + 4242;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Button1Click(Sender: TObject);
var
txt: string;
begin
txt := 'Hello World';
SendMessage(Form1.Handle, MY_MESSAGE, 0, DWORD(PChar(txt)));
end;
end.
使用此代码,我应该读取数据。我也想兼容。
const
MY_MESSAGE = WM_USER + 4242;
type
TForm1 = class(TForm)
// Handler that receive the Message
procedure MessageReceiver(var msg: TMessage); message MY_MESSAGE;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.MessageReceiver(var msg: TMessage);
var
txt: PChar;
begin
txt := PChar(msg.lParam);
msg.Result := 1;
ShowMessage(txt);
end;
end.
所以我的应用程序包含两个部分:一个在 Microsoft Visual Studio 中,我使用 opencv,我想向第二个应用程序发送消息,它是在 Delphi 中创建的。