Berichte werden jetzt generiert, jedoch liegt es noch im bin datei dann

This commit is contained in:
Husky
2018-07-08 21:18:22 +02:00
parent 1a47c877b4
commit f7be4f6237
13 changed files with 232 additions and 321 deletions

View File

@@ -201,15 +201,10 @@ namespace SanSystem
options.ShowDialog();
}
private void button2_Click(object sender, EventArgs e)
{
FrmLinerChart frmLinerChart = new FrmLinerChart();
frmLinerChart.ShowDialog();
}
private static ChartControl getGraph(string csvFile)
{
Size size = new Size(800, 400);
Size size = new Size(600, 400);
ChartControl chartControl = new ChartControl();
chartControl.Size = size;
@@ -300,5 +295,12 @@ namespace SanSystem
watch.Stop();
MessageBox.Show((watch.ElapsedTicks) + " s");
}
private void btn_create_protokol_Click(object sender, EventArgs e)
{
Hashtable hashtable = inliner.MakeProtokoll(destinationPath);
BerichtGen.Options options = new BerichtGen.Options("JUME", "liner_einbau.docx", "./", hashtable, new List<BilderObject>());
options.ShowDialog();
}
}
}