Exemplo n.º 1
0
        ///////////////////////////////////////////////////////////////////////

        private bool SafeAppendText(
            string text,
            bool newLine
            )
        {
            return(CommonOps.AppendText(txtLog, text, newLine, true));
        }
Exemplo n.º 2
0
        ///////////////////////////////////////////////////////////////////////

        #region Public Methods
        public void SafeClose()
        {
            CheckDisposed();

            CommonOps.Invoke(this, new DelegateWithNoArgs(delegate()
            {
                Close();
            }), true);
        }
Exemplo n.º 3
0
        ///////////////////////////////////////////////////////////////////////

        public bool SafeClearLog()
        {
            CheckDisposed();

            return(CommonOps.SetText(txtLog, null, true));
        }