예제 #1
0
 private void buttonCreateEnvironment_Click(object sender, EventArgs e)
 {
     this.Environment = new SmalltalkEnvironment();
     this.LastResult = null;
     this.textResultInstall.Text = null;
     this.textResultEvaluate.Text = null;
 }
예제 #2
0
 private void buttonProcessInterchangeFiles_Click(object sender, EventArgs e)
 {
     string path = @"D:\Users\TT\Documents\Visual Studio 2010\Projects\IronSmalltalk\TestPlayground\Test.ist";
     path = @"D:\Users\TT\Desktop\IronSmalltalk.ist";
     SmalltalkEnvironment env = new SmalltalkEnvironment();
     CompilerService compiler = env.CompilerService;
     compiler.InstallFiles(new string[] { path }, new ConsoleErrorSink(), null);
 }
예제 #3
0
 private void buttonCreateEnvironment_Click(object sender, EventArgs e)
 {
     this.Environment = new SmalltalkEnvironment();
     this.listErrors.Items.Clear();
 }
예제 #4
0
 private void InstallTester_Load(object sender, EventArgs e)
 {
     if (Properties.Settings.Default.LastInstallerSource != null)
         this.txtSource.Text = Properties.Settings.Default.LastInstallerSource;
     this.Environment = new SmalltalkEnvironment();
 }
예제 #5
0
 public WorkspaceTester()
 {
     InitializeComponent();
     this.Environment = new SmalltalkEnvironment();
     this.LastResult = null;
 }