Digicust API

This commit is contained in:
2023-11-13 16:07:02 +01:00
parent 9117ca1c17
commit faebd68d0f
5 changed files with 132 additions and 44 deletions

View File

@@ -26,6 +26,7 @@ Partial Class frmDigicust
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmDigicust))
Me.Button1 = New System.Windows.Forms.Button()
Me.pnlHead = New System.Windows.Forms.Panel()
Me.cbxAviso = New System.Windows.Forms.CheckBox()
Me.txtVorpapierT = New VERAG_PROG_ALLGEMEIN.MyTextBox()
Me.txtLWKLand = New VERAG_PROG_ALLGEMEIN.MyTextBox()
Me.UsrCntl_Consignee = New SDL.usrCntlAdresse()
@@ -46,7 +47,9 @@ Partial Class frmDigicust
Me.Label1 = New System.Windows.Forms.Label()
Me.txtDyNiederlassung = New System.Windows.Forms.Label()
Me.lblBezugsnummer = New System.Windows.Forms.Label()
Me.cbxAviso = New System.Windows.Forms.CheckBox()
Me.lblAnh = New System.Windows.Forms.Label()
Me.cbxAbsender = New System.Windows.Forms.CheckBox()
Me.cbxEmpfänger = New System.Windows.Forms.CheckBox()
Me.pnlHead.SuspendLayout()
CType(Me.dgvAnhaenge, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
@@ -71,6 +74,8 @@ Partial Class frmDigicust
'
Me.pnlHead.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink
Me.pnlHead.BackColor = System.Drawing.Color.White
Me.pnlHead.Controls.Add(Me.cbxEmpfänger)
Me.pnlHead.Controls.Add(Me.cbxAbsender)
Me.pnlHead.Controls.Add(Me.cbxAviso)
Me.pnlHead.Controls.Add(Me.txtVorpapierT)
Me.pnlHead.Controls.Add(Me.txtLWKLand)
@@ -96,6 +101,18 @@ Partial Class frmDigicust
Me.pnlHead.Size = New System.Drawing.Size(606, 706)
Me.pnlHead.TabIndex = 112
'
'cbxAviso
'
Me.cbxAviso.AutoSize = True
Me.cbxAviso.Checked = True
Me.cbxAviso.CheckState = System.Windows.Forms.CheckState.Checked
Me.cbxAviso.Location = New System.Drawing.Point(409, 35)
Me.cbxAviso.Name = "cbxAviso"
Me.cbxAviso.Size = New System.Drawing.Size(150, 17)
Me.cbxAviso.TabIndex = 156
Me.cbxAviso.Text = "Daten aus Aviso schicken"
Me.cbxAviso.UseVisualStyleBackColor = True
'
'txtVorpapierT
'
Me.txtVorpapierT._DateTimeOnly = False
@@ -364,17 +381,35 @@ Partial Class frmDigicust
Me.lblBezugsnummer.Text = "4800/000000/17 AAA"
Me.lblBezugsnummer.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'cbxAviso
'lblAnh
'
Me.cbxAviso.AutoSize = True
Me.cbxAviso.Checked = True
Me.cbxAviso.CheckState = System.Windows.Forms.CheckState.Checked
Me.cbxAviso.Location = New System.Drawing.Point(409, 35)
Me.cbxAviso.Name = "cbxAviso"
Me.cbxAviso.Size = New System.Drawing.Size(150, 17)
Me.cbxAviso.TabIndex = 156
Me.cbxAviso.Text = "Daten aus Aviso schicken"
Me.cbxAviso.UseVisualStyleBackColor = True
Me.lblAnh.Location = New System.Drawing.Point(474, 713)
Me.lblAnh.Name = "lblAnh"
Me.lblAnh.Size = New System.Drawing.Size(135, 13)
Me.lblAnh.TabIndex = 152
Me.lblAnh.Visible = False
'
'cbxAbsender
'
Me.cbxAbsender.AutoSize = True
Me.cbxAbsender.Location = New System.Drawing.Point(9, 135)
Me.cbxAbsender.Name = "cbxAbsender"
Me.cbxAbsender.Size = New System.Drawing.Size(133, 17)
Me.cbxAbsender.TabIndex = 157
Me.cbxAbsender.Text = "Absender übernehmen"
Me.cbxAbsender.UseVisualStyleBackColor = True
'
'cbxEmpfänger
'
Me.cbxEmpfänger.AutoSize = True
Me.cbxEmpfänger.Checked = True
Me.cbxEmpfänger.CheckState = System.Windows.Forms.CheckState.Checked
Me.cbxEmpfänger.Location = New System.Drawing.Point(303, 135)
Me.cbxEmpfänger.Name = "cbxEmpfänger"
Me.cbxEmpfänger.Size = New System.Drawing.Size(139, 17)
Me.cbxEmpfänger.TabIndex = 158
Me.cbxEmpfänger.Text = "Empfänger übernehmen"
Me.cbxEmpfänger.UseVisualStyleBackColor = True
'
'frmDigicust
'
@@ -382,6 +417,7 @@ Partial Class frmDigicust
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink
Me.ClientSize = New System.Drawing.Size(621, 769)
Me.Controls.Add(Me.lblAnh)
Me.Controls.Add(Me.pnlHead)
Me.Controls.Add(Me.Button1)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
@@ -417,4 +453,7 @@ Partial Class frmDigicust
Friend WithEvents txtVorpapierT As VERAG_PROG_ALLGEMEIN.MyTextBox
Friend WithEvents txtLWKLand As VERAG_PROG_ALLGEMEIN.MyTextBox
Friend WithEvents cbxAviso As CheckBox
Friend WithEvents lblAnh As Label
Friend WithEvents cbxEmpfänger As CheckBox
Friend WithEvents cbxAbsender As CheckBox
End Class