Tagged Questions

0
votes
1answer
16 views

PostMessage with priority?

Is it possible to prioritize a message sent with PostMessage (or any of the other related methods)? IIRC, the WM_PAINT message, for instance, is only processed when there are no o …
0
votes
3answers
36 views

How do you encode an Object in a Web Worker for it to be passed via postMessage?

Internally, Firefox will JSON encode an object passed via postMessage to and from the Web Worker. However, this only works in Trunk builds of Firefox (3.6+) and not in Firefox 3.5, …
2
votes
3answers
255 views

How to send a string via PostMessage?

Inside my app, I want to send a message to a dialog from a different thread. I want to pass an std::exception derived class reference to the dialog. Something like this: try { …
0
votes
5answers
163 views

Sending WM_COMMAND to a TMenuItem

In my Delphi form's OnShow method, I determine that a dialog must be opened automatically once the form is opened - and I should be able to do this by simulating a click on a menui …
1
vote
4answers
262 views

Which is faster: SetEvent, SendMessage, PostMessage

Environment: Win32, C/C++ All three (3) can be used for a thread to signal to main() that it has completed an operation for example. But which one is the fastest signal of all? …
0
votes
4answers
176 views

How to send a message from one instance of a managed app to another?

I've got a WinForms app, where if there is already an instance running & the user tries to spin up another one, I stop it by checking against a Mutex before calling Application …
0
votes
1answer
127 views

PostMessage() alternative in Java(Android)

Hi, I am rewriting the existing C++ application and adapting it for Android environment. In the code there is a PostMessage statement: PostMessage( bExitApp ? WM_CLOSE : WM_LOGI …
1
vote
2answers
344 views

Send a double click to a listview (c++, not .net!)

Hello. I want to send a double click to a listview. From what I've read on msdn it seems I gotta send a WM_NOTIFY message and something with NM_DBLCLK. But I do not understand real …
0
votes
2answers
137 views

Determining Window Message Queue Depth

We have an application that uses the window message queue to pass data from a socket to consumer HWNDs (at a rate of ~2100Hz). This application has worked for >2 years. Recently ou …
1
vote
4answers
1k views

I can’t understand how to use SendMessage or PostMessage calls :(

Hi guys, I need to simulate a keypress in a third party application. Let's say I have a C# application that needs to send an "8" to the Calculator application. I can't use the Sen …
0
votes
1answer
302 views

Using PostMessage in Windows Mobile to simulate a menu pick

I'm writing a routine to provide user definable keyboard short-cuts for any menu item in my Windows Mobile 5 application, which is in C++/MFC. To do this I am getting all of the a …
1
vote
8answers
770 views

PostMessage in service applications

There is a problem I am unable to solve. I created two service applications in Delphi and tried to post messages within them. Of course, there are no windows in such applications a …
0
votes
2answers
568 views

How send WM_HOTKEY with PostMessage?

I want to send WM_HOTKEY to be captured by other application using a global desktop HotShortCut. The expected Keys are CTRL + F10 This is the only way I found to trigger the capt …
0
votes
2answers
610 views

How to programmatically select popup menu item in Windows?

I have an app that I'm writing a little wizard for. It automated a small part of the app by moving the mouse to appropriate buttons, menus and clicking them so the user can watch. …
1
vote
3answers
905 views

Programmatically change combobox

I need to update a combobox with a new value so it changes the reflected text in it. The cleanest way to do this is after the combobox has been initialised and with a message. So …