protected void MakeReport(string message) { this.Invoke(new Function(delegate() { StatusText.AppendText(message + "\r\n"); })); }
protected void MakeReport(string message) { this.BeginInvoke((Action)(() => { StatusText.AppendText(message + "\r\n"); })); }
protected void MakeName(string message) { this.Invoke(new Function(delegate() { textBox1.Text = message; StatusText.AppendText(message + "\r\n"); })); }
protected void MakeReport(string message) { //if (!StatusText.IsHandleCreated) //{ // this.CreateHandle(); //} Invoke(new Function(() => StatusText.AppendText(message + "\r\n"))); }
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"); }
protected void MakeReport(string message) { //Invoke(new Function(() => StatusText.AppendText(message + "\r\n"))); StatusText.AppendText(message + "\r\n"); }