2
votes
3answers
22 views
keyboard hook in windows C++ or what?
Hi,
I wish to build my own application which can send keyboard commands(messages) to the Windows OS.
For example when I press ctrl+shit+n, I wish to launch the notepad.exe . How …
0
votes
2answers
113 views
[jQuery Validator] help with custom positioning error messages
Hello,
I'm playing with the great Bassistance jQuery Validator and am stuck at a point
The idea is simple: I have lot of this markup (I semplify, but the idea is that after each t …
0
votes
1answer
62 views
Qt portable IPC: only QSharedMemory?
Hi,
I'm looking for suggestions about choosing a portable way to achieve local IPC in a robust way, since i'm new to C++ and would like to avoid common pitfalls of fiddling with s …
0
votes
0answers
12 views
What is the output of this MPI simple program ?
Please could any one give me the output of this program and explain why:
mpirub -np 2 ./prog.o
#include "mpi.h"
#include <math.h>
#include <stdio.h>
int main(int arg …
0
votes
3answers
73 views
What is a good message broker that works with PHP?
I am looking for a message broker (like Apache ActiveMQ for Java) that works with PHP, preferably open-source. Any ideas?
0
votes
2answers
30 views
Sending a message to an application started by a different windows’ user session.
A desktop app (made in Delphi) is started by User A. Let's call it "Instance A".
User A does a "switch user" and User B logs in.
User B runs the same application. Let's call it …
0
votes
1answer
27 views
about using the free credits provided by Clickatell
Excuse me, may I ask if anyone have used Clickatell SMS gateway?
I have tried to register an account there and then try to send an SMS message through PHP code.
THen I get "ERR: 3 …
2
votes
2answers
46 views
Disable all notifictions of incomming messages in Symbian S60v3
How do I programmatically disable these notifications when a message is arriving on my symbian S60v3 phone:
Message tone (I think I got that one)
The led flashing
The phone vibra …
0
votes
0answers
20 views
getting user defined messages using antlr3.0.1
numberrange returns [String value]
: numberrangesub
{
String numberRange = ($numberrangesub.text);
String [] v = numberRange.split(",");
if ( …
1
vote
1answer
27 views
Keep track of read/unread User Messages with a MessageClicks table?
I'm trying to implement a simple Inbox system for users of my app so that can send basic messages to each other - just like in many forum systems.
If User has_many :messages, how …
2
votes
4answers
135 views
How to redirect MFC messages to another object?
In an instance of a class derived from CWnd, is it possible to forward (redirect) all MFC messages to another object, without writing separate handlers and message mappings for eac …
3
votes
3answers
158 views
Send a message to a Windows Forms message loop
I have a thread that reads messages from a named pipe. It is a blocking read, which is why it's in its own thread. When this thread reads a message, I want it to notify the Windows …
0
votes
2answers
125 views
Catching a WM_NOTIFY message from a custom ListCtrl
My application is c++, and is a combination of MFC and ATL.
The part I'm working with here is MFC.
I have a custom list control class in one of my dialogs which inherits from CLis …
0
votes
1answer
87 views
Handling messages for window from other process
I'm developing a C# WPF application that reparents the main window of another application using a call to Win32 SetParent(). The handle to this out-of-process child window is wrapp …
1
vote
1answer
36 views
Removing all the messages from MSMQ
I have a Nunit test which adds message into MSMQ.
In the teardown of the NUnit i want to remove all the message from the queue.
Is there a direct way to remove all the messages fro …
