Beispiel #1
0
 }              //MsgWnd
 #endregion
 #region theClass
 public bgThread2()
 {
     bgWnd      = new bgThread2WndProc(this);
     myThread   = new Thread(myThreadStart);
     bRunThread = true;
     myThread.Start();
 }
Beispiel #2
0
 //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();
 }
Beispiel #3
0
 public bgThread2(Queue aQueue)
 {
     _theQueue  = aQueue;
     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();
 }
 }//MsgWnd
 #endregion
 #region theClass
 public bgThread2()
 {
     bgWnd = new bgThread2WndProc(this);
     myThread = new Thread(myThreadStart);
     bRunThread = true;
     myThread.Start();
 }
 public bgThread2(Queue aQueue)
 {
     _theQueue = aQueue;
     bgWnd = new bgThread2WndProc(this);
     myThread = new Thread(myThreadStart);
     bRunThread = true;
     myThread.Start();
 }