Imprägnierungsprotokolle werden erstellt

This commit is contained in:
HuskyTeufel
2019-10-22 16:54:21 +02:00
parent 416db297b4
commit 9747e129cc
16 changed files with 386 additions and 22 deletions

View File

@@ -31,6 +31,7 @@ namespace SanSystem
}
InlinerSanierung inliner = null;
string destinationPath = string.Empty;
UCWerkseitigImprägniert werkseitigImprägniert = null;
UCLinerGrundlagenBrawo UCLinerGrundlagen = null;
List<string> filenames = new List<string>();
/// <summary>
@@ -41,11 +42,13 @@ namespace SanSystem
{
InitializeComponent();
inliner = san;
werkseitigImprägniert = new UCWerkseitigImprägniert(san);
UCLinerGrundlagen = new UCLinerGrundlagenBrawo(san);
TabPage tab = new TabPage("Linergrundlagen");
UCLinerGrundlagen.Dock = DockStyle.Fill;
tab.Controls.Add(UCLinerGrundlagen);
tab.Controls.Add(werkseitigImprägniert);
//tab.Controls.Add(UCLinerGrundlagen);
tabControl1.TabPages.Add(tab);
}
@@ -274,9 +277,7 @@ namespace SanSystem
prozess.StartInfo.FileName = "explorer";
try
{
DirectoryInfo directory = Directory.GetParent(destinationPath);
prozess.StartInfo.Arguments = Directory.GetParent(destinationPath).FullName;
prozess.StartInfo.Arguments = destinationPath;
prozess.Start();
}
catch (Exception ex)