diff --git a/SanSystem/frmMain.cs b/SanSystem/frmMain.cs index ada75b8..513f2df 100644 --- a/SanSystem/frmMain.cs +++ b/SanSystem/frmMain.cs @@ -154,7 +154,8 @@ namespace SanSystem private void FrmProjektList_FormClosed(object sender, FormClosedEventArgs e) { - showauftraggeberform(); + if(Datenbank.Instance.loadedProjekt.Auftraggeber.Name == null) + showauftraggeberform(); toolStripStatus_projekt_Label.Text = Global.Instance.ProjektNummer; Form[] openedWindows = this.MdiChildren; @@ -178,6 +179,12 @@ namespace SanSystem //frmLinerReste.IsMdiChild = true; frmLinerReste.Show(); + + frmInfo frmInfo = new frmInfo(); + frmInfo.MdiParent = this; + frmInfo.Location = new Point(this.Width - frmInfo.Width - 05, this.Height - frmInfo.Height - 80); + + frmInfo.Show(); }