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:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user