1. Re :How do exw and win32lib behave?
Hawke' wondered (I'm paraphrasing here):
> Are Windows events handled as interrupts (as they happen), or are they
queued?
They are queued. You can see Win32Lib read they queue in the routine
WinMain; the actual event processing is handled in the routine WndProc.
Win32 supports multithreading; Win32Lib does not (not currently, anyway).
-- David Cuny
2. Re: Re :How do exw and win32lib behave?
David Cuny wrote:
>
> Hawke' wondered (I'm paraphrasing here):
>
> > Are Windows events handled as interrupts (as they happen), or are they
> queued?
>
> They are queued. You can see Win32Lib read they queue in the routine
> WinMain; the actual event processing is handled in the routine WndProc.
>
> Win32 supports multithreading; Win32Lib does not (not currently, anyway).
>
> -- David Cuny
thankee begesus!
i don't have to jump thru hoops!
ill just happily leave my code the way it sits :)
thankee david :) --Hawke'