Chat etc.

This commit is contained in:
ms
2020-05-12 14:55:03 +02:00
parent 46a9991b2a
commit be5014153d
54 changed files with 1993 additions and 263 deletions

View File

@@ -28,6 +28,7 @@ Partial Class frmPrint
Me.rdbHostListe = New System.Windows.Forms.RadioButton()
Me.rdbHostCheckListe = New System.Windows.Forms.RadioButton()
Me.lblZugangsdatenDruckWarnung = New System.Windows.Forms.Label()
Me.btnManuell = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'CmdPrint
@@ -37,9 +38,9 @@ Partial Class frmPrint
Me.CmdPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.CmdPrint.Image = Global.Dokumentation.My.Resources.Resources.Print20x20
Me.CmdPrint.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
Me.CmdPrint.Location = New System.Drawing.Point(169, 69)
Me.CmdPrint.Location = New System.Drawing.Point(193, 69)
Me.CmdPrint.Name = "CmdPrint"
Me.CmdPrint.Size = New System.Drawing.Size(151, 28)
Me.CmdPrint.Size = New System.Drawing.Size(127, 28)
Me.CmdPrint.TabIndex = 13
Me.CmdPrint.Text = "Drucken"
Me.CmdPrint.UseVisualStyleBackColor = False
@@ -86,12 +87,27 @@ Partial Class frmPrint
Me.lblZugangsdatenDruckWarnung.Text = "Zugangsdaten werden gedruckt!"
Me.lblZugangsdatenDruckWarnung.Visible = False
'
'btnManuell
'
Me.btnManuell.BackColor = System.Drawing.SystemColors.ControlLightLight
Me.btnManuell.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer))
Me.btnManuell.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnManuell.Image = Global.Dokumentation.My.Resources.Resources.Print20x20
Me.btnManuell.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnManuell.Location = New System.Drawing.Point(12, 69)
Me.btnManuell.Name = "btnManuell"
Me.btnManuell.Size = New System.Drawing.Size(127, 28)
Me.btnManuell.TabIndex = 19
Me.btnManuell.Text = "Manuell"
Me.btnManuell.UseVisualStyleBackColor = False
'
'frmPrint
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.ControlLightLight
Me.ClientSize = New System.Drawing.Size(342, 114)
Me.Controls.Add(Me.btnManuell)
Me.Controls.Add(Me.lblZugangsdatenDruckWarnung)
Me.Controls.Add(Me.rdbHostCheckListe)
Me.Controls.Add(Me.rdbHostListe)
@@ -110,4 +126,5 @@ Partial Class frmPrint
Friend WithEvents rdbHostListe As RadioButton
Friend WithEvents rdbHostCheckListe As RadioButton
Friend WithEvents lblZugangsdatenDruckWarnung As Label
Friend WithEvents btnManuell As Button
End Class