vote up 3 vote down star
3

The Application.ProcessMessages command is well known and I use it in long processes to ensure my program will not tie up the computer.

But I have one fairly quick set of processing, where I am buffering a view into a file. During the buffering procedure, a few system messages may get sent off (e.g. redraw or scrollbar move or other events). I want to prevent these from getting handled by ProcessMessages until my buffering is complete.

Is there any way to either:

  1. Prevent Application.ProcessMessages until my procedure is complete, or

  2. Trap all messages generated during my procedure, and not release them until the end of the procedure.

flag

Rereading your question I don't really understand it - if you have a quick executing procedure and don't want Application.ProcessMessages to handle any unwelcome messages, why do you call Application.ProcessMessages at all in this procedure? – mghie Aug 10 at 9:03
mghie: I don't explicitly call it, but I do add some events to the queue (e.g. scrollbar position) that will get executed if the messages happen to get processed. I need to simply ensure during this code, that no pending events get executed – lkessler Aug 10 at 15:43
But that's the point: If you are inside your procedure, unless you explicitly call Application.ProcessMessages no events will be processed. They will be added to the queue and processed later, but that's it. How would the messages get processed unless you want them to? – mghie Aug 10 at 22:21

3 Answers

vote up 5 vote down check

Allowing the ProcessMessages to continue even if it sends messages you don't want should not be classed as problematic. With a bit of code refactoring, you could move the buffering method into a separate thread and go from there.

If you are attempting to copy the "visual contents" of a control into a file,

  • look at the WM_PRINT(xxx) message which allows child controls to paint themselves into bitmaps
  • try the LockWindowUpdate Win32 API method call which will turn off all painting messages to that control
  • override the WndProc/DefaultWndProc method on your control class or even the parent class if you need to and simply return "true" for each message sent
  • override specific control methods (such as "scroll bar moved", "OnPaint", "OnPaintBackground" etc) on the control class or even the parent and simply do nothing if your buffering is in progress

Overriding the WndProc or DefaultWndProc and simply returning true for each message essentially "turns off" ProcessMessages but it's not safe to do it this way because the control might need to process one or more messages to function correctly.

Turning off ProcessMessages is not possible (without rewriting the VCL code for message processing) because of the fact that it's part of how the VCL form's message loop has been constructed.

link|flag
The LockWindowUpdate seems to be what I was looking for. And your other ideas are good too. Thanks. – lkessler Aug 9 at 21:54
2  
The LockWindowUpdate() API should never be used, according to Raymond Chen: blogs.msdn.com/oldnewthing/archive/… At least it should not be used for what you want to use it for: blogs.msdn.com/oldnewthing/archive/… – mghie Aug 10 at 4:31
Hmmm. Thanks mghie. Your warning will be heeded. But Mike still gave me a lot of information about the processing to lead me in the right direction. – lkessler Aug 10 at 15:58
vote up 2 vote down

Trap all messages generated during my procedure, and not release them until the end of the procedure.

There is a dirty hack you can do (only if you can not come up with a better way):

You can watch (trap) any messages by using Win32 Hooks.
Specifically, use SetWindowsHookEx with WH_CALLWNDPROC as the idHook value.
You can then record them in a list/queue and resend them when you want.

link|flag
I think this would work, too. A little more work than Mike's ideas, but would give me complete control. Thanks. – lkessler Aug 9 at 21:55
vote up 1 vote down

I learned way back in Windows 2 that windows messages will happen at times you don't expect them. Any part of a library can cause your app's message processing to happen. Rather than hold back the tide, make your code robust against the situation. This may be as simple as usinga a BeginUpdate/EndUpdate pair, or more complex (using a temporary and doing the final update at the end).

link|flag
That's sort of what I'm looking for: a BeginUpdate/EndUpdate pair that will prevent all Windows events until the work is done. But I believe these only work to prevent repainting. – lkessler Aug 10 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.