Example #1
0
        private void localTerminalToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (JBossCommand != null)
            {
                MessageBox.Show("local terminal already active!");
                return;
            }

            this.Cursor = Cursors.WaitCursor;

            LocalTerminalCommand = new LocalCommand();

            this.SuspendLayout();
            ConnectionTab tab = CreateTab("Local Terminal", LocalTerminalCommand);

            LocalTerminalCommand.ExecuteCommand(Settings.Default.LocalTerminal);

            this.ResumeLayout();
            this.Cursor = Cursors.Default;

            LocalTerminalCommand.SendCommand("ls");
        }