private void RunButton_Click(object sender, EventArgs e)
 {
     parser.ExecuteAll();
 }
 public void ExeScript(String file)
 {
     parser.LoadFile(file);
     parser.ExecuteAll();
 }