Example #1
0
 public void setRecieve(string appendText)
 {
     if (InvokeRequired)
     {
         this.Invoke(new Action <string>(setRecieve), new object[] { appendText });
         return;
     }
     ReceiveBox.AppendText(appendText);
     ReceiveBox.AppendText(Environment.NewLine);
     WriteBox.Text = "";
 }