Exemplo n.º 1
0
 private void startThread()
 {
     delTextBoxUpdate updator = new delTextBoxUpdate(updateTextBox);
     for(int i = 0; i < 1000; i++)
     {
         this.updateBox.BeginInvoke(updator, i + "");
         Thread.Sleep(100);
     }
 }
Exemplo n.º 2
0
        private void startThread()
        {
            delTextBoxUpdate updator = new delTextBoxUpdate(updateTextBox);

            for (int i = 0; i < 1000; i++)
            {
                this.updateBox.BeginInvoke(updator, i + "");
                Thread.Sleep(100);
            }
        }