private Thread th;public constructor(){ CheckForIllegalCrossThreadCalls = false; th = new Thread(new ThreadStart(MyNewThread)); th.Start();}private void MyNewThread(){ // Add new thread code here.}