He...Are you sure?In winform, controls in Windows Forms are bound to a specific thread and 
are not thread safe. There are four methods on a control that are safe to call from any thread: 
Invoke, BeginInvoke, EndInvoke and CreateGraphics. For all other method 
calls, you should use one of these invoke methods when calling from a 
different thread.The sample below tells you how to manipulate multithreading winform 
controls:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/htm
l/cpconDevelopingMultithreadedWindowsFormsControl.asp