Events on the same thread do not interrupt each other.
If the timer is a System.Windows.Form.Timer then it runs on the main
UI thread and will not interrupt the other events.
On Thu, 31 Jul 2008 06:17:50 -0700 (PDT), Curious
<fir5tsight@xxxxxx> wrote:
Quote:
>Hi Jack,
>
>Thanks for asking this!
>
>#1 and #2 are on the same main thread, while #3 is on a separate timer
>thread that runs every 15 seconds.
>
>#1 and #2 are events and may happen at anytime. What happens if #1 and
>#2 happen at the same time? Are they serizlized or do they step on
>each other's feet?