日本語のみで絞り込む
2024/2/22 -The size, in bytes, of the data pointed to by the lpData member. lpData. Type: PVOID. The data to be passed to the receiving application. This ...
2011/7/21 -C# using SendMessage, problem with WM_COPYDATA · Ask ... COPYDATASTRUCT { public IntPtr dwData; public int cbData; public IntPtr lpData; }.
COPYDATASTRUCT messages may be used to send structured data between processes.
2014/9/22 -Then CopyDatastruct.lpData would be VarPtr(arr(0)) 2) Change the CopyDatastruct.lpData type to String vs Long. With VB6 that would trigger ...
2022/8/19 -I'm looking for help in getting WM_COPYDATA working, this is how im sending a string: Copy std::string string = "abcde"; COPYDATASTRUCT cds{};
2020/12/31 -I am able to send data between two C# applications I have created, using the code samples you provided. In your StackOverflow it seems as if you ...
Q.C++初心者です。 sendmassageについて 他アプリに文字列を送信しようとしましたが送れません。 なぜでしょうか? ソースはネットにあったものを参考にさせてもらいました。 ウィンドウハン...
A.[SendMessage()の使い方] SendMessage()関数の使い方は、以下を参照して下さい。 ただし、SendMessage()関数自体は、使いこなされている様子ですので、下記を参照...
Q.プロセス間通信についてお聞きしたいです。 C#側からSendmessageでデータを送って、c++で受信したいのですが、うまく受信しません。 ご教授お願いいたします。 VisualStudio2...
A.CFormView のウィンドウ ( ダイアログ ) はトップレベルウィンドウの子ウィンドウとなっているので、 hWnd = FindWindow(null, sWindowText); のウィ...
Q.こんにちは。teratermに関する質問です。 現在、VisualStudioからC#プログラムによって、teratermにコマンド(*idn?など)を送り、実行することを考えています。 ter...
A.ごめんなさい、本筋の回答じゃなのですけれど、 teratermの機能を考えた時、teratermをリモートで操作するより端末機能を自分で作っちゃったほうがいっそ楽じゃないですか?
2010/12/2 -How to convert COPYDATASTRUCT's lpData to a understandable string in C# WPF? Hi, i have this c++ exe that sends a message to a window written in ...
Working example for sending a string between C# handles (Controls/Forms) using WM_COPYDATA. - MessagePasser.cs.
2008/7/29 -To send a message that is a string, you need to use the WM_DATACOPY message property. The hard part is that you cannot just send the string as a ...
2019/4/2 -public struct COPYDATASTRUCT { public IntPtr dwData; public int cbData; public IntPtr lpData; } COPYDATASTRUCT CdsMsg; IntPtr iPtrForCdsMsg ...