This commit is contained in:
SchreiberM
2016-12-09 10:23:42 +01:00
parent 481e767a99
commit 30a6c6b9fb
35 changed files with 1449 additions and 3454 deletions

View File

@@ -22,81 +22,92 @@ Partial Class frmMessageBox
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmMessageBox))
Me.lblmsg1 = New System.Windows.Forms.Label()
Me.lblmsg2 = New System.Windows.Forms.Label()
Me.txtmsg1 = New System.Windows.Forms.TextBox()
Me.txtmsg2 = New System.Windows.Forms.TextBox()
Me.OK_Button = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.TextBox2 = New System.Windows.Forms.TextBox()
Me.SuspendLayout()
'
'lblmsg1
'
Me.lblmsg1.AutoSize = True
Me.lblmsg1.Location = New System.Drawing.Point(12, 9)
Me.lblmsg1.Name = "lblmsg1"
Me.lblmsg1.Size = New System.Drawing.Size(38, 13)
Me.lblmsg1.TabIndex = 1
Me.lblmsg1.Text = "Label1"
'
'lblmsg2
'
Me.lblmsg2.AutoSize = True
Me.lblmsg2.Location = New System.Drawing.Point(12, 77)
Me.lblmsg2.Name = "lblmsg2"
Me.lblmsg2.Size = New System.Drawing.Size(38, 13)
Me.lblmsg2.TabIndex = 2
Me.lblmsg2.Text = "Label2"
'
'txtmsg1
'
Me.txtmsg1.BackColor = System.Drawing.SystemColors.Control
Me.txtmsg1.Location = New System.Drawing.Point(12, 25)
Me.txtmsg1.Multiline = True
Me.txtmsg1.Name = "txtmsg1"
Me.txtmsg1.ReadOnly = True
Me.txtmsg1.Size = New System.Drawing.Size(411, 49)
Me.txtmsg1.TabIndex = 3
'
'txtmsg2
'
Me.txtmsg2.BackColor = System.Drawing.SystemColors.Control
Me.txtmsg2.Location = New System.Drawing.Point(15, 93)
Me.txtmsg2.Multiline = True
Me.txtmsg2.Name = "txtmsg2"
Me.txtmsg2.ReadOnly = True
Me.txtmsg2.Size = New System.Drawing.Size(408, 54)
Me.txtmsg2.TabIndex = 4
'
'OK_Button
'
Me.OK_Button.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.OK_Button.Location = New System.Drawing.Point(305, 153)
Me.OK_Button.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.OK_Button.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.OK_Button.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.OK_Button.Location = New System.Drawing.Point(14, 151)
Me.OK_Button.Name = "OK_Button"
Me.OK_Button.Size = New System.Drawing.Size(118, 23)
Me.OK_Button.Size = New System.Drawing.Size(409, 54)
Me.OK_Button.TabIndex = 0
Me.OK_Button.Text = "OK"
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(321, 13)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(38, 13)
Me.Label1.TabIndex = 1
Me.Label1.Text = "Label1"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(324, 30)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(38, 13)
Me.Label2.TabIndex = 2
Me.Label2.Text = "Label2"
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(305, 64)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(100, 21)
Me.TextBox1.TabIndex = 3
'
'TextBox2
'
Me.TextBox2.Location = New System.Drawing.Point(327, 106)
Me.TextBox2.Name = "TextBox2"
Me.TextBox2.Size = New System.Drawing.Size(100, 21)
Me.TextBox2.TabIndex = 4
'
'frmMessageBox
'
Me.AcceptButton = Me.OK_Button
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(435, 188)
Me.Controls.Add(Me.TextBox2)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.ClientSize = New System.Drawing.Size(433, 210)
Me.Controls.Add(Me.txtmsg2)
Me.Controls.Add(Me.txtmsg1)
Me.Controls.Add(Me.lblmsg2)
Me.Controls.Add(Me.lblmsg1)
Me.Controls.Add(Me.OK_Button)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Icon = CType(resources.GetObject("$this.Icon"),System.Drawing.Icon)
Me.MaximizeBox = false
Me.MinimizeBox = false
Me.Name = "frmMessageBox"
Me.ShowInTaskbar = False
Me.ShowInTaskbar = false
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "frmMessageBox"
Me.ResumeLayout(False)
Me.PerformLayout()
Me.ResumeLayout(false)
Me.PerformLayout
End Sub
End Sub
Friend WithEvents OK_Button As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
Friend WithEvents lblmsg1 As System.Windows.Forms.Label
Friend WithEvents lblmsg2 As System.Windows.Forms.Label
Friend WithEvents txtmsg1 As System.Windows.Forms.TextBox
Friend WithEvents txtmsg2 As System.Windows.Forms.TextBox
End Class