Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

Sending a struct from C++ to WPF using WM_COPYDATA

I have a native C++ application that, for the time being simply needs to send its command line string and current mouse cursor coordinates to a WPF application. The message is sent and received just ...
4
votes
1answer
206 views

Thread message loop for a thread with a hidden window?

I have a Delphi 6 application that has a thread dedicated to communicating with a foreign application that uses SendMessage() and WM_COPYDATA messages to interface with external programs. Therefore, ...
3
votes
1answer
2k views

Use WM_COPYDATA to send data between processes

I wish to send text between processes. I have found lots of examples of this but none that I can get working. Here is what I have so far: for the sending part: COPYDATASTRUCT CDS; CDS.dwData = 1; ...
1
vote
3answers
161 views

WM_COPYDATA with and without quotes yields different results

Using WM_COPYDATA to pass command line params to another app instance with Delphi XE as follows: function DAppInstance.SendParamsToPrevInstance(AWindowHandle: THandle): Boolean; var copyData: ...
1
vote
4answers
280 views

WM_COPYDATA string not appearing in target application

I'm trying to pass information between two of my applications in Delphi 2010. I'm using a simplified version of code that I've used successfully in the past (simplified because I don't need the ...
1
vote
1answer
339 views

Send text from VB to Delphi apps, using SendMessage

) I am trying to send a short text from a VB app to Delphi app.. here is the VB Code: Sender Program "Sender" Public Class SendData Const WM_COPYDATA = &H4A Public Structure CopyDataStruct ...
1
vote
1answer
249 views

How to send a short string from a Visual Basic application to a Delphi application?

I need to send a short string, (less than 30 bytes, but sent every second), from one VB application, to a Delphi application.. is this possible, using CopyDataStruct, WM_COPYDATA and SendMessage ...
1
vote
1answer
393 views

Using WM_COPYDATA with Delphi-Prism applications

Does anyone have a good delphi-prism example of receiving and interpreting a WM_COPYDATA message? I'm particularly interested in how to deal with the message data structure.
1
vote
0answers
314 views

WM_COPYDATA in Windows 7 blocks application if modal window open

I have the following scenario: the application receives a WM_COPYDATA it extracts the information (some characters) and is processing the message while processing it displays a window, simulating a ...
1
vote
3answers
697 views

Problem in Communication between two dialog boxes through WM_COPYDATA?

Friends its really giving me a great head ache about the problem I am facing for the couple of days...Its simple...I want to communicate between two/more dialog boxes for example if there is a ...
0
votes
1answer
31 views

Is it safe to call PeekMessage/GetMessage from a DirectShow filter FillBuffer() call?

I have a DirectShow filter written in Delphi 6 using the DSPACK component library. It is a push source video filter that receives its source frames from an external cooperating process that I also ...
0
votes
2answers
272 views

Inter-application communication between JAVA and C# using window messaging

I need to communicate with C# application using Window messaging from Java application. From my application I register for messages used for communicating. I am able to successfully get the window ...
0
votes
1answer
239 views

Sending WM_COPYDATA but getting WM_ACTIVATEAPP on the receiving side

I have the following scenario: My app gets some data from the command line. After getting executed by the first time, my app runs always one instance and that instance will be in memory until the ...
0
votes
0answers
72 views

What is a good alternative to using CopyData to an elevated application

I have an application that stops a service, copies a file, then starts the service again. I want it to display a progress bar and no extra window, no changing screens, just let the UAC do its thing ...
0
votes
3answers
250 views

IPC: WM_COPYDATA + serialization/deserialization

I am currently working on 2 .NET apps which must communicate with each other. Simple Windows Messaging was chosen and this works nicely at the moment. The data that is sent in the messages is a simple ...
0
votes
1answer
251 views

Can I use WM_COPYDATA to copy a non-struct?

Lets say I have this class in foobar-shared.lib: class FooBar { std::string m_helloWorld; } And I have a call in foobar-from.exe using SendCopyData like so: extern HWND hMainWnd; // ...
-2
votes
1answer
122 views

Cannot send info from dll to exe with WM_COPYDATA

I am trying to send a record from one dll to one exe. The dll is an Outlook add-in I wrote, the exe is my main application. I used this example to succesfully send a record from exe to exe, but ...