Пример #1
0
 protected void MakeReport(string message)
 {
     this.Invoke(new Function(delegate()
     {
         StatusText.AppendText(message + "\r\n");
     }));
 }
Пример #2
0
 protected void MakeReport(string message)
 {
     this.BeginInvoke((Action)(() =>
     {
         StatusText.AppendText(message + "\r\n");
     }));
 }
Пример #3
0
 protected void MakeName(string message)
 {
     this.Invoke(new Function(delegate()
     {
         textBox1.Text = message;
         StatusText.AppendText(message + "\r\n");
     }));
 }
Пример #4
0
 protected void MakeReport(string message)
 {
     //if (!StatusText.IsHandleCreated)
     //{
     //    this.CreateHandle();
     //}
     Invoke(new Function(() => StatusText.AppendText(message + "\r\n")));
 }
Пример #5
0
 protected void MakeReport(string message)
 {
     StatusText.Invoke(new MethodInvoker(delegate { StatusText.AppendText(message + "\r\n"); }));
 }
 protected void MakeReport(string message)
 {
     StatusText.AppendText(message + "\r\n");
 }
 protected void SetStatus(string status)
 {
     StatusText.AppendText(status + "\r\n");
 }
Пример #8
0
 protected void MakeReport(string message)
 {
     //Invoke(new Function(() => StatusText.AppendText(message + "\r\n")));
     StatusText.AppendText(message + "\r\n");
 }