Windows Forms


 Useful tips for windows forms programmers (c#), including tips on developing user controls, playing with events, threads and more.
 
How to update a property value for a Windows Forms Control from another thread.
In multihreading applications you might get an error if you try to access a property for a Control from another thread than the Windows thread. see how to do that.

Timers and BackgroundWorkers in Windows Forms, some tips
They are easy to use, but you must use the right ones