約2,540件1ページ目

日本語のみで絞り込む

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 ...

A.[SendMessage()の使い方] SendMessage()関数の使い方は、以下を参照して下さい。 ただし、SendMessage()関数自体は、使いこなされている様子ですので、下記を参照...

A.CFormView のウィンドウ ( ダイアログ ) はトップレベルウィンドウの子ウィンドウとなっているので、 hWnd = FindWindow(null, sWindowText); のウィ...

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 ...