
This article proposes a solution for updating Windows Form components when using cross-thread method calls.
Since .net framework 2.0, you can't make a explicit method call to a windows form component method (say, you wanted to alter the text of a label). This happens because windows forms is not thread-safe (in other words, it can't guarantee that the behavior using threads will be the same as using only the main program thread).
|