Generell wird kein doc mehr erzeugt
prüfung ob uv anlage erreichbar ist
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user