private void showErr()
        {
            OutputLister l = new OutputLister((string)this.err.Tag);

            l.ShowDialog();
        }
        private void showLog()
        {
            OutputLister l = new OutputLister((string)this.uibotLog.Tag);

            l.ShowDialog();
        }
        private void showOutput()
        {
            OutputLister l = new OutputLister((string)this.Out.Tag);

            l.ShowDialog();
        }