SndDetails

This commit is contained in:
2026-03-31 10:20:37 +02:00
parent 455477f60c
commit fea2340e8b
6 changed files with 450 additions and 420 deletions

View File

@@ -25,6 +25,7 @@ Partial Class sendTAB
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(sendTAB))
Me.pnl = New System.Windows.Forms.Panel()
Me.lblColliWeight = New System.Windows.Forms.Label()
Me.pic = New System.Windows.Forms.PictureBox()
Me.lblAuftr = New System.Windows.Forms.Label()
Me.lblAbfBez = New System.Windows.Forms.Label()
@@ -39,6 +40,7 @@ Partial Class sendTAB
'pnl
'
Me.pnl.BackColor = System.Drawing.Color.LightGray
Me.pnl.Controls.Add(Me.lblColliWeight)
Me.pnl.Controls.Add(Me.pic)
Me.pnl.Controls.Add(Me.lblAuftr)
Me.pnl.Controls.Add(Me.lblAbfBez)
@@ -47,14 +49,31 @@ Partial Class sendTAB
Me.pnl.Location = New System.Drawing.Point(0, 0)
Me.pnl.Margin = New System.Windows.Forms.Padding(0)
Me.pnl.Name = "pnl"
Me.pnl.Size = New System.Drawing.Size(90, 50)
Me.pnl.Size = New System.Drawing.Size(100, 60)
Me.pnl.TabIndex = 0
'
'lblColliWeight
'
Me.lblColliWeight.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.lblColliWeight.BackColor = System.Drawing.Color.DarkGray
Me.lblColliWeight.Cursor = System.Windows.Forms.Cursors.Hand
Me.lblColliWeight.Font = New System.Drawing.Font("Microsoft Sans Serif", 7.5!)
Me.lblColliWeight.Location = New System.Drawing.Point(1, 47)
Me.lblColliWeight.Margin = New System.Windows.Forms.Padding(0)
Me.lblColliWeight.Name = "lblColliWeight"
Me.lblColliWeight.Size = New System.Drawing.Size(100, 13)
Me.lblColliWeight.TabIndex = 4
Me.lblColliWeight.Text = "-"
Me.lblColliWeight.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
Me.lblColliWeight.UseCompatibleTextRendering = True
'
'pic
'
Me.pic.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.pic.Cursor = System.Windows.Forms.Cursors.Hand
Me.pic.Image = CType(resources.GetObject("pic.Image"), System.Drawing.Image)
Me.pic.Location = New System.Drawing.Point(78, 2)
Me.pic.Location = New System.Drawing.Point(88, 2)
Me.pic.Name = "pic"
Me.pic.Size = New System.Drawing.Size(10, 10)
Me.pic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
@@ -63,10 +82,13 @@ Partial Class sendTAB
'
'lblAuftr
'
Me.lblAuftr.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.lblAuftr.Cursor = System.Windows.Forms.Cursors.Hand
Me.lblAuftr.Location = New System.Drawing.Point(3, 19)
Me.lblAuftr.Name = "lblAuftr"
Me.lblAuftr.Size = New System.Drawing.Size(86, 31)
Me.lblAuftr.Size = New System.Drawing.Size(96, 27)
Me.lblAuftr.TabIndex = 2
Me.lblAuftr.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
@@ -94,7 +116,7 @@ Partial Class sendTAB
'
Me.cntxt.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.SendungDuplizierenToolStripMenuItem})
Me.cntxt.Name = "cntxt"
Me.cntxt.Size = New System.Drawing.Size(184, 48)
Me.cntxt.Size = New System.Drawing.Size(184, 26)
'
'SendungDuplizierenToolStripMenuItem
'
@@ -110,7 +132,7 @@ Partial Class sendTAB
Me.Controls.Add(Me.pnl)
Me.Margin = New System.Windows.Forms.Padding(2, 2, 0, 0)
Me.Name = "sendTAB"
Me.Size = New System.Drawing.Size(90, 50)
Me.Size = New System.Drawing.Size(100, 60)
Me.pnl.ResumeLayout(False)
Me.pnl.PerformLayout()
CType(Me.pic, System.ComponentModel.ISupportInitialize).EndInit()
@@ -125,5 +147,5 @@ Partial Class sendTAB
Friend WithEvents pic As System.Windows.Forms.PictureBox
Friend WithEvents cntxt As System.Windows.Forms.ContextMenuStrip
Friend WithEvents SendungDuplizierenToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Public WithEvents lblColliWeight As Label
End Class