Tagged Questions
The cross-process tag has no wiki summary.
8
votes
3answers
872 views
Is Boost IPC any good?
My default choice for cross-platform IPC would be boost, but I saw it criticised in two different forums when I asked about it and this concerned me. Perhaps this was simply a coincidence, so what are ...
5
votes
3answers
179 views
Should I dispose a Mutex?
I'm working on 2 Windows Services that have a common database which I want to lock (cross-process) with a system Mutex.
Now I'm wondering whether it's ok to just call WaitOne() and ReleaseMutex() in ...
5
votes
2answers
694 views
Named semaphores in Python?
I have a script in python which uses a resource which can not be used by more than a certain amount of concurrent scripts running.
Classically, this would be solved by a named semaphores but I can ...
4
votes
1answer
142 views
Get ListView item text from other window
I want to make a little application that changes the default playback device in windows 7. The only solution was to interact with the Sound Applet. I succeeded to get the handle to the SysListView32 ...
3
votes
5answers
243 views
Cross-process interaction under C++
Please help, how can I organize the process-process data exchange (in Windows, if that matters)?
I have process1.exe which calls process2.exe with a few command line arguments. I want to track ...
2
votes
2answers
213 views
Send fast textinput to another process (Window)
I am writing a C# WPF program which sends text messages to another program's window. I have a macro program as part of my keyboard drivers (Logitech g15) which already does this, though it does not ...
2
votes
2answers
177 views
What options do I have for SSIS cross-process communication?
I would like to store an integer variable that gets incremented and decremented (a counting semaphore for limiting concurrent requests to an external API). This would be easy, except I need a way to ...
2
votes
3answers
127 views
How can I start/stop applications on a different computer?
Is it possible for one C# (desktop) application to start and stop applications on another machine?
I don't mean in a malicious sense, or even over the internet. I have two computers in a room and I ...
1
vote
1answer
32 views
Sync object for creating an object once only
I need some kind of cross-process synchronisation object that will allow me to create and initialise an object once and then close and dispose it once only when the last instance exits.
e.g. lifetime ...
1
vote
2answers
190 views
2-way Cross Process Communication
I am working on a project that i want to have a plugin-sandbox like System, However i am having issues working out 2-Way Real time Cross Process Communication. At first i thought of WCF, as it can ...
1
vote
1answer
125 views
Most Compatible Inter-Process Communication protocol
I am working on an media application for which I would like to provide an external API library that would allow another application to communicate with mine an query status information. My application ...
1
vote
3answers
254 views
Cross-process read-write synchronization primative in .NET?
Is there a read/write locking mechanism that works across processes (similar to Mutex, but read/write instead exclusive locking)? I would like to allow concurrent read access, but exclusive write ...
1
vote
1answer
1k views
How to add button to other apps window title bar (XP/Vista)
I have the handler of an open window which wasn't necessarily open by my process. How can I add a button to that window and make the button call a certain application (.exe) when clicked? The button ...
0
votes
3answers
32 views
How to use OpenProcessToken, AdjustTokenPrivileges, and GetExitCodeProcess in VC++ 2005
I read a couple of posts on how to check if a process has exited from a different process (I realize some people get hung up on semantics here, but just humor me) and I tried to implement it but am ...
0
votes
1answer
257 views
How to implement a CrossProcessCursor compatible generic custom CursorWrapper
I manage to create a working CursorWrapper, but get stuck when I want to use my ContentProvider across processes.
These posts even show how to implement the CrossProcessCursor interface, notably the ...
0
votes
2answers
352 views
How to get information about contents of Qt listbox in another process
I got an application written using Qt and I would like to read data in Qt listbox.
It doesnt respond to LB_GETTEXT or other windows messages, is there a good way to get data from it from another ...
0
votes
1answer
153 views
Problems with 'cross process subclassing'
Two questions.
1) I understand this must be an expected outcome but maybe someone can tell me what I'm doing wrong; I'm trying to subclass all window classes in a global hook and it works except that ...
0
votes
1answer
367 views
Avoiding cross process calls when doing Word automation via VB.net
The short version
I've got a Word Addin in VB.net and VSTO that exposes a COM compatible object via Word.COMAddins.Object, so that the addin functionality can be called External to Word, without ...