I'm not sure if this will help in an event loop, but there is a system setting
that may affect this. You can try:
SetSystemAttribute (ATTR_ALLOW_UNSAFE_TIMER_EVENTS, 1);
This will supposedly allow timer callbacks (post event as well?) to occur
when windows are moved or resized or the system menu is open (I haven't tried
it myself). Again, not sure if this will make any difference when using
event loops....
Chris
"Mike Levine" wrote:
>>Hi,> I have an application that is continuously collecting real time
data.> It is>currently designed with an event loop. When the user activates
a button,>>or uses a pull down menu, the program stops running until the
menu is>no longer open. Is there a way of getting the event loop to continue
until>th
e user has committed an action on the window? Or do I need to have>my
event loop run in a seperate thread? Will changing everything over to>callbacks
solve my problem?>>Thanks,>Mike