Essensbestellung, nun kann in EssensbestellungenAdmin manuell Tage bis Bestelllimit gesetzt werden.

This commit is contained in:
2023-02-15 12:27:12 +01:00
parent 6ab2965021
commit dba8a60bf4
3 changed files with 85 additions and 8 deletions

View File

@@ -28,6 +28,8 @@ Partial Class frmEssensbestellungenAdministration
Me.Label4 = New System.Windows.Forms.Label()
Me.Label22 = New System.Windows.Forms.Label()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.lblDaysToOrder = New System.Windows.Forms.Label()
Me.txtBestelllimit = New VERAG_PROG_ALLGEMEIN.MyTextBox()
Me.txtMarkierteDS = New VERAG_PROG_ALLGEMEIN.MyTextBox()
Me.Label11 = New System.Windows.Forms.Label()
Me.btnNew = New System.Windows.Forms.Button()
@@ -115,6 +117,8 @@ Partial Class frmEssensbestellungenAdministration
'
'Panel1
'
Me.Panel1.Controls.Add(Me.lblDaysToOrder)
Me.Panel1.Controls.Add(Me.txtBestelllimit)
Me.Panel1.Controls.Add(Me.txtMarkierteDS)
Me.Panel1.Controls.Add(Me.Label11)
Me.Panel1.Controls.Add(Me.btnNew)
@@ -149,6 +153,39 @@ Partial Class frmEssensbestellungenAdministration
Me.Panel1.Size = New System.Drawing.Size(1242, 85)
Me.Panel1.TabIndex = 2
'
'lblDaysToOrder
'
Me.lblDaysToOrder.AutoSize = True
Me.lblDaysToOrder.Location = New System.Drawing.Point(347, 59)
Me.lblDaysToOrder.Name = "lblDaysToOrder"
Me.lblDaysToOrder.Size = New System.Drawing.Size(100, 13)
Me.lblDaysToOrder.TabIndex = 68
Me.lblDaysToOrder.Text = "Bestelllimit in Tagen"
'
'txtBestelllimit
'
Me.txtBestelllimit._DateTimeOnly = False
Me.txtBestelllimit._numbersOnly = False
Me.txtBestelllimit._numbersOnlyKommastellen = ""
Me.txtBestelllimit._numbersOnlyTrennzeichen = True
Me.txtBestelllimit._Prozent = False
Me.txtBestelllimit._ShortDateNew = False
Me.txtBestelllimit._ShortDateOnly = False
Me.txtBestelllimit._TimeOnly = False
Me.txtBestelllimit._TimeOnly_Seconds = False
Me.txtBestelllimit._value = Nothing
Me.txtBestelllimit._Waehrung = False
Me.txtBestelllimit._WaehrungZeichen = False
Me.txtBestelllimit.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtBestelllimit.ForeColor = System.Drawing.Color.Black
Me.txtBestelllimit.Location = New System.Drawing.Point(311, 55)
Me.txtBestelllimit.MaxLineLength = -1
Me.txtBestelllimit.MaxLines_Warning = ""
Me.txtBestelllimit.MaxLines_Warning_Label = Nothing
Me.txtBestelllimit.Name = "txtBestelllimit"
Me.txtBestelllimit.Size = New System.Drawing.Size(30, 20)
Me.txtBestelllimit.TabIndex = 67
'
'txtMarkierteDS
'
Me.txtMarkierteDS._DateTimeOnly = False
@@ -822,4 +859,6 @@ Partial Class frmEssensbestellungenAdministration
Friend WithEvents btnNew As Button
Friend WithEvents Label11 As Label
Friend WithEvents txtMarkierteDS As VERAG_PROG_ALLGEMEIN.MyTextBox
Friend WithEvents lblDaysToOrder As Label
Friend WithEvents txtBestelllimit As VERAG_PROG_ALLGEMEIN.MyTextBox
End Class