public void AppendLog(string status) { if (StatusLog.InvokeRequired) { StatusLog.Invoke(new SafeStatusDelegate(AppendLog), new object[] { status }); } else { StatusLog.AppendText(status + "\n"); } }