Tagged Questions

1
vote
3answers
230 views

postthreadmessage and peekmessage problem in delphi 2006

I created a multichilded application. The application windows (W[n]: TMyWindows) are all the same and all have an private object class instance associated with them (E: TMyObject). The child windows …
0
votes
1answer
40 views

PeekMessage() Resetting the Mouse Cursor [Solved]

Im currently messing around with changing the mouse cursor within a game like C++ application for Windows XP. To change the cursor I am using SetCursor() and passing in the desired cursor, which is …
0
votes
3answers
343 views

Is there a function like PeekMessage that doesn’t process messages?

I'm trying to innocently call PeekMessage(&msg, 0, WM_KEYDOWN, WM_KEYUP, PM_NOREMOVE | PM_NOYIELD); and Windows Vista 64, in the PeekMessage call, is processing messages. The result is that …
0
votes
0answers
277 views

How to override wxApp::MainLoop properly (wxWidgets)?

I'm writing a cross-platform application. Is there a way in wxWidgets to define my own event loop? How to do that? I want it look like an ordinary windows PeekMessage DispachMessage loop: for(;;) { …