DN wird in Kalibrierungsauflistung dargestellt

Kalibrierungsauflistung wird seperat gespeichert
Baustellen ordner lässt sich nun öffnen
LinerOrdner lässt sich nun öffnen
This commit is contained in:
Husky
2019-08-09 11:50:00 +02:00
parent bf019037f2
commit 841763885f
6 changed files with 82 additions and 25 deletions

View File

@@ -256,5 +256,22 @@ namespace SanSystem
BerichtGen.FrmOptions options = new BerichtGen.FrmOptions("JUME", "liner_einbau.docx", speicherpfad,inliner.Inspektionsobjekt.Objektbezeichnung, hashtable, new List<BilderObject>());
options.ShowDialog();
}
private void Btn_open_file_Click(object sender, EventArgs e)
{
Process prozess = new Process();
prozess.StartInfo.FileName = "explorer";
try
{
DirectoryInfo directory = Directory.GetParent(destinationPath);
prozess.StartInfo.Arguments = Directory.GetParent(destinationPath).FullName;
prozess.Start();
}
catch (Exception ex)
{
MessageBox.Show("Es ist ein fehler aufgetreten beim öffnen vom Leitungsordner " + ex.Message);
}
}
}
}