Generell wird kein doc mehr erzeugt

prüfung ob uv anlage erreichbar ist
This commit is contained in:
HuskyTeufel
2022-03-25 13:42:15 +01:00
parent dea733183e
commit 3a51ada9d6
5 changed files with 36 additions and 4 deletions

View File

@@ -27,7 +27,15 @@ namespace SanSystem
private void Btn_save_Click(object sender, EventArgs e)
{
string s = string.Format("{0} {1}", dateTimePicker.Value.ToShortDateString(), txt_offset.Text);
Offset = DateTime.Parse(s);
try
{
Offset = DateTime.Parse(s);
}
catch(System.FormatException ex)
{
MessageBox.Show("Fehler beim Datum, es wird das jetzige Datum verwendet\n"+ex.Message);
Offset = DateTime.Now;
}
this.Close();
}
}