Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
5answers
301 views

Sharing a common memory area in Delphi between PCs

I have a Delphi 2006 app that gathers data and displays it as a summary of many channels, one channel per row on a TDrawGrid. I have the same app running on various other PCs on the network, but ...
1
vote
1answer
24 views

How to create a remote mailslot in win32 programming?

hMailslot = CreateMailslot("\\\\.\\Mailslot\\client", 0, MAILSLOT_WAIT_FOREVER, NULL); This is the mailslot that I created for local machine and it works. How, exactly can I create for a mailslot ...
1
vote
1answer
59 views

“Access Denied” on writing on Mailslot in Windows Service program

I use Mailslots (in Delphi 7) for inter-programs dialog and all is OK. But when I use one of my program (in Windows XP) as Windows service I have a message "Mailslot Access Denied", when another ...
1
vote
4answers
184 views

A good broadcast mechanism for inhouse .net applications to announce their location and version?

I would like to provide a large number of inhouse .net applications with a lightweight way to announce that they are being used. My goal is to keep track of which users might benefit from support ...
0
votes
1answer
86 views

What kind of data does RealPopup send through the mailslot?

I'm trying to create an app that mimics RealPopup and I will be using it as a proof of concept for sending out computer-generated notifications to clients which are already using RealPopup throughout ...
0
votes
2answers
657 views

Simple Mailslot program not working?

Using the client and server examples found here: http://www.winsocketdotnetworkprogramming.com/winsock2programming/winsock2advancedmailslot14.html Compiling them with VS2008, running the server and ...
-1
votes
1answer
165 views

Mailslot with string

I need to make a message concating various parts. So I used ostringstream. Now I have a std::string or a const * char to send by mailslot. I have tryed many ways to do it but every time I receive ...