The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
2answers
48 views

Why is the thread status dead?

That is the question. I called a function using a thread, but when I return to main control, main becomes in sleep status within a few moments. Example (Look here is a line that calls a Win32API ...
1
vote
0answers
97 views

Combine GetMessage and PeekMessage in C++

I intend to create a small application with 2 windows, a normal window with controls and a 3D window, rendered with DirectX. For 3D window PeekMessage() is recommended because it doesn't wait after ...
0
votes
0answers
50 views

create custom main from dll

I'm creating a layer around .NET and Win API. I need to prepare some things before the users can enter the main function, like calling the GetMessage function. Is it possible to start a program from ...
2
votes
0answers
94 views

GetMessage(WM_CHAR) override? Making sure all other Window Hooks activate

I'm looking for a way to intercept a GetMessage() call for WM_CHAR in an external process (only the active window, to be specific). I'm hesitant to use SetWindowsHookEx() - I want to make absolutely ...
0
votes
0answers
241 views

e.getMessage throw NullPointerException [closed]

Who can tell me why the exception is not null,but the e.getMessage() method throw a NullPointerException? My code : private void sendRequest() { try { // there is a ...
1
vote
0answers
184 views

How to hook and use WH_GETMESSAGE in AutoIt

Can someone give an example on how to hook in WH_GETMESSAGE into AutoIt to look for all system/app window messages on the desktop, and do something if a window is moved, and how to store the handle ...
0
votes
1answer
87 views

LIFO Win32 message loop?

Is it possible to somehow cleverly use PostMessage, GetMessage, etc. to queue LIFO messages (assuming both the sender and the receiving message loop cooperate), or would I need to roll my own ...
0
votes
1answer
170 views

Invalid window handle after GetMessage() loop

For some reason I get "Invalid window handle" error direct after GetMessage() loop ends but I'm not even passing a HWND to it so how come I get this error? :s MSG Message; ...
0
votes
1answer
178 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 ...
2
votes
2answers
293 views

Get plain text from SunAwtCanvas

Since it's impossible to capture text from a java canvas by using standard Windows API functions like GetMessage(), I wondered if there is any way to hook the drawText() method inside such a java ...
1
vote
1answer
497 views

Win32 API GetMessage()

I want to change the default behaviour of a combobox (c++, win32 api). I make the combobox drop down when something is entered in its edit control I want to avoid the default behaviour that the ...
0
votes
1answer
523 views

Message text from GetMessageW or NtUserGetMessage

I have a process that is spawned as a background process, that for some reason seems to throw up a message box in the background. So the process hangs, and I can't get the message. Can anyone tell ...
0
votes
0answers
363 views

Receiving Win32 window messages in a DLL loaded by a C# app

I have a C# library that is loaded by a C# application and I am trying to interop with a C++ SDK using my own C++ DLL. The SDK needs to be able to send me asynchronous messages and it will accept a ...
6
votes
4answers
661 views

Why would GetMessageW take up massive CPU usage in my WPF application?

I've got a serious head-scratcher on my hands here. I'm investigating performance issues with a WPF component in our application. Our .net application is very large, and almost entirely in windows ...
7
votes
3answers
2k views

Why peekmessage before getmessage?

Why the peekMessage statement is required before Getmessage() for creating message queue?
1
vote
3answers
2k views

Thread does not receive messages

There is a thread in my Delphi application that has a message-waiting loop. Every time it receives a message, it starts doing some work. Here is the execute procedure of that thread: procedure ...
5
votes
5answers
2k views

Prevent C preprocessor to do a specific macro subsitution

How can I tell the preprocessor not to replace a specific macro? The specific problem is the following: Windows header files define the GetMessage macro. My C++ header files with my API have a ...