_ Partial Class Login Inherits System.Windows.Forms.Form 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Wird vom Windows Form-Designer benötigt. Private components As System.ComponentModel.IContainer 'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich. 'Das Bearbeiten ist mit dem Windows Form-Designer möglich. 'Das Bearbeiten mit dem Code-Editor ist nicht möglich. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Login)) Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.LblInfo = New System.Windows.Forms.Label() Me.PanHilfe = New System.Windows.Forms.Panel() Me.CmdVerstanden = New System.Windows.Forms.Button() Me.PictureBox1 = New System.Windows.Forms.PictureBox() Me.PanHilfe.SuspendLayout() CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'Timer1 ' Me.Timer1.Enabled = True Me.Timer1.Interval = 10 ' 'LblInfo ' Me.LblInfo.AutoSize = True Me.LblInfo.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.LblInfo.Location = New System.Drawing.Point(3, 106) Me.LblInfo.Name = "LblInfo" Me.LblInfo.Size = New System.Drawing.Size(51, 15) Me.LblInfo.TabIndex = 0 Me.LblInfo.Text = "Label1" ' 'PanHilfe ' Me.PanHilfe.Controls.Add(Me.CmdVerstanden) Me.PanHilfe.Controls.Add(Me.PictureBox1) Me.PanHilfe.Controls.Add(Me.LblInfo) Me.PanHilfe.Location = New System.Drawing.Point(13, 13) Me.PanHilfe.Name = "PanHilfe" Me.PanHilfe.Size = New System.Drawing.Size(695, 377) Me.PanHilfe.TabIndex = 1 Me.PanHilfe.Visible = False ' 'CmdVerstanden ' Me.CmdVerstanden.BackColor = System.Drawing.SystemColors.ControlLightLight Me.CmdVerstanden.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.CmdVerstanden.Location = New System.Drawing.Point(157, 351) Me.CmdVerstanden.Name = "CmdVerstanden" Me.CmdVerstanden.Size = New System.Drawing.Size(377, 23) Me.CmdVerstanden.TabIndex = 2 Me.CmdVerstanden.Text = "Verstanden" Me.CmdVerstanden.UseVisualStyleBackColor = False ' 'PictureBox1 ' Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image) Me.PictureBox1.Location = New System.Drawing.Point(359, 29) Me.PictureBox1.Name = "PictureBox1" Me.PictureBox1.Size = New System.Drawing.Size(333, 269) Me.PictureBox1.TabIndex = 1 Me.PictureBox1.TabStop = False ' 'Login ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.SystemColors.GradientInactiveCaption Me.ClientSize = New System.Drawing.Size(720, 402) Me.Controls.Add(Me.PanHilfe) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "Login" Me.ShowInTaskbar = False Me.Text = "Login" Me.WindowState = System.Windows.Forms.FormWindowState.Minimized Me.PanHilfe.ResumeLayout(False) Me.PanHilfe.PerformLayout() CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents Timer1 As Timer Friend WithEvents LblInfo As Label Friend WithEvents PanHilfe As Panel Friend WithEvents PictureBox1 As PictureBox Friend WithEvents CmdVerstanden As Button End Class