Is it possible that GUI event interrupts running code from the GUI thread to execute its own event handler method?
Hello folk, I have a weird behavior in my GUI code. If the user produces a lot of events in a short time, it happens that a running event handler method gets interrupted by another event handler method. Since everything runs in the same thread (GUI thread) everything should run sequential and an interruption should not be possible, or d...