From 2e3fa702f15dc247ecb371696b49f5a9233b0151 Mon Sep 17 00:00:00 2001 From: "m.ilhan" Date: Thu, 12 Dec 2024 13:34:06 +0100 Subject: [PATCH] Bugfix --- Aviso/frmEintragTvNew.vb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Aviso/frmEintragTvNew.vb b/Aviso/frmEintragTvNew.vb index badbcbb..e0cfef3 100644 --- a/Aviso/frmEintragTvNew.vb +++ b/Aviso/frmEintragTvNew.vb @@ -333,7 +333,7 @@ Public Class frmEintragTvNew myAvisoTvNew = New cAvisoTvNew() With { .StandortID = standortID, .Standort = standort, - .Art = "", + .Prio = "", .IsActive = True } @@ -718,7 +718,7 @@ Public Class frmEintragTvNew chkFriday.Checked = aviso.IsFriday.GetValueOrDefault(False) chkSaturday.Checked = aviso.IsSaturday.GetValueOrDefault(False) chkSunday.Checked = aviso.IsSunday.GetValueOrDefault(False) - nudPrioritaet.Value = Convert.ToDecimal(aviso.Art) + nudPrioritaet.Value = Convert.ToDecimal(aviso.Prio) chkIsActive.Checked = aviso.IsActive grpWochentage.Enabled = chkIsRecurring.Checked @@ -916,7 +916,7 @@ Public Class frmEintragTvNew myAvisoTvNew.IsSunday = chkSunday.Checked myAvisoTvNew.IsActive = chkIsActive.Checked - myAvisoTvNew.Art = Convert.ToInt32(nudPrioritaet.Value) + myAvisoTvNew.Prio = Convert.ToInt32(nudPrioritaet.Value) If Neuanlage Then myAvisoTvNew.Standort = cbxStandort.SelectedItem?.ToString()