MS05082016

This commit is contained in:
SchreiberM
2016-08-05 14:28:00 +02:00
parent 76c1d9d66b
commit a0761e43c5
37 changed files with 11589 additions and 6467 deletions

View File

@@ -274,6 +274,7 @@
End Sub
Sub SetCheckbox()
Try
If GUIDTextBox.Text = "" Then Exit Sub
Dim sql As String = "select FOLLOW_UP_DAYS from TBPMO_FOLLOW_UP_EMAIL where guid = " & GUIDTextBox.Text
Dim follup_Days As String = ClassDatabase.Execute_Scalar(sql)
Formloaded = False
@@ -285,7 +286,7 @@
chkSamstag.Checked = False
chkSonntag.Checked = False
If IsNothing(follup_Days) Then Exit Sub
If follup_Days.Substring(0, 1) = 1 Then
CheckBox1.Checked = True
End If