} //MsgWnd #endregion #region theClass public bgThread2() { bgWnd = new bgThread2WndProc(this); myThread = new Thread(myThreadStart); bRunThread = true; myThread.Start(); }
//for the ping here is a second constuctor to enable you to specify the IP public bgThread2(string sCOM) { bgWnd = new bgThread2WndProc(this); myThread = new Thread(myThreadStart); bRunThread = true; _sCOM = sCOM; myThread.Start(); }
public bgThread2(Queue aQueue) { _theQueue = aQueue; bgWnd = new bgThread2WndProc(this); myThread = new Thread(myThreadStart); bRunThread = true; myThread.Start(); }
}//MsgWnd #endregion #region theClass public bgThread2() { bgWnd = new bgThread2WndProc(this); myThread = new Thread(myThreadStart); bRunThread = true; myThread.Start(); }