private void lastWorkspaceToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Testing.WorkspaceForm ws = new Testing.WorkspaceForm(
         Properties.Settings.Default.LastWorkspaceInstallText,
         Properties.Settings.Default.LastWorkspaceEvaluateText);
     ws.Show();
 }
        private void newWorkspaceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string installText = null;

            if (this.SmalltalkSystem != null)
            {
                StringBuilder str    = new StringBuilder();
                StringWriter  writer = new StringWriter(str);
                Definitions.Saving.FileOutWriterIST10.FileOut(this.SmalltalkSystem.SystemImplementation, writer);
                installText = str.ToString();
            }

            Testing.WorkspaceForm ws = new Testing.WorkspaceForm(
                installText,
                Properties.Settings.Default.LastWorkspaceEvaluateText);
            ws.Show();
        }
 private void emptyWorkspaceToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Testing.WorkspaceForm ws = new Testing.WorkspaceForm(null, null);
     ws.Show();
 }
        private void newWorkspaceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string installText = null;
            if (this.SmalltalkSystem != null)
            {
                StringBuilder str = new StringBuilder();
                StringWriter writer = new StringWriter(str);
                Definitions.Saving.FileOutWriterIST10.FileOut(this.SmalltalkSystem.SystemImplementation, writer);
                installText = str.ToString();
            }

            Testing.WorkspaceForm ws = new Testing.WorkspaceForm(
                installText,
                Properties.Settings.Default.LastWorkspaceEvaluateText);
            ws.Show();
        }
 private void lastWorkspaceToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Testing.WorkspaceForm ws = new Testing.WorkspaceForm(
         Properties.Settings.Default.LastWorkspaceInstallText,
         Properties.Settings.Default.LastWorkspaceEvaluateText);
     ws.Show();
 }
 private void emptyWorkspaceToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Testing.WorkspaceForm ws = new Testing.WorkspaceForm(null, null);
     ws.Show();
 }