From what I\'ve found in C#, the Control.Invoke method requires that you use a delegate with no input parameters. Is there any way around this? I would like to invoke a me
private void ppTrace(string tv) { if (_Txb1.InvokeRequired) { _Txb1.Invoke((Action)ppTrace, tv); } else { _Txb1.AppendText(tv + Environment.NewLine); } }