Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

Why peekmessage before getmessage?

Why the peekMessage statement is required before Getmessage() for creating message queue?
3
votes
4answers
308 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 ...
3
votes
5answers
1k 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 ...
2
votes
2answers
65 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
132 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 ...
1
vote
3answers
1k 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 ...
0
votes
1answer
29 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
31 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 ...
0
votes
1answer
79 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
139 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 ...