public void MsgWrite(string msg) { if (!string.IsNullOrWhiteSpace(msg)) { if (TB_Msg.InvokeRequired) { TB_Msg.BeginInvoke(new Action(() => { try { TB_Msg.AppendText(msg); TB_Msg.AppendText(Environment.NewLine); } catch { } })); } else { try { TB_Msg.AppendText(msg); TB_Msg.AppendText(Environment.NewLine); } catch { } } } }
public void MsgClear() { if (TB_Msg.InvokeRequired) { TB_Msg.BeginInvoke(new Action(() => { TB_Msg.Clear(); })); } else { TB_Msg.Clear(); } }
public void MsgWrite(string msg) { if (TB_Msg.InvokeRequired) { TB_Msg.BeginInvoke(new Action(() => { TB_Msg.AppendText(msg); TB_Msg.AppendText(Environment.NewLine); })); } else { TB_Msg.AppendText(msg); TB_Msg.AppendText(Environment.NewLine); } }