private void butCompile_Click(object sender, EventArgs e) { string itd = Different.GetInfoTaskDir(); var t = new TablikCompiler { ShowIndicator = true }; t.SetHistoryFile(itd + @"Constructor\TablikHistory\TablikHistory.accdb"); t.SetCompiledDir(itd + @"Compiled"); //t.LoadProject(itd + @"ProjectsReal\Тутаев\TutElectro.accdb"); //t.LoadProject(itd + @"ProjectsReal\Сургут2-3\Electro3.accdb"); //t.LoadProject(itd + @"ProjectsReal\Курган\Ktec2_Tep.accdb"); //t.LoadProject(itd + @"Projects\PrSignals.accdb"); //t.LoadProject(itd + @"Analyzer\ArhAnalyzerProject.accdb"); t.LoadProject(itd + @"Projects\ClassTest.accdb"); //t.LoadProject(itd + @"ProjectsReal\СУГРЭС-11\Sugres11_PN.accdb"); //t.LoadProject(itd + @"Projects\ApdControl.accdb"); //MessageBox.Show(t.ProjectFile + " " + t.ProjectCode + " " + t.ProjectName); t.LoadSignals(); string res = t.CompileProject(); if (!res.IsEmpty()) { MessageBox.Show(res); } t.Close(); }
private void button1_Click(object sender, EventArgs e) { const string appDir = @"C:\InfoTask\Debug\Constructor"; const string infoTaskDir = @"C:\InfoTask\Debug"; string pFile = this.tbProjectFile.Text; //TablikInit TablikCompiler compiller = new TablikCompiler(); string stParam = appDir + @"\TablikHistory\TablikHistory.accdb"; string errMess = compiller.SetHistoryFile(stParam); stParam = infoTaskDir + @"\Compiled"; errMess = compiller.SetCompiledDir(stParam); compiller.LoadProject(pFile); compiller.LoadSignals(); compiller.CompileProject(); compiller.Close(); }