_ Partial Class frmAbout 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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAbout)) Me.PictureBox1 = New System.Windows.Forms.PictureBox Me.btnOK = New System.Windows.Forms.Button Me.lblversiondatum = New System.Windows.Forms.Label Me.lblVersion = New System.Windows.Forms.Label CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'PictureBox1 ' Me.PictureBox1.ErrorImage = CType(resources.GetObject("PictureBox1.ErrorImage"), System.Drawing.Image) Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image) Me.PictureBox1.Location = New System.Drawing.Point(0, 0) Me.PictureBox1.Name = "PictureBox1" Me.PictureBox1.Size = New System.Drawing.Size(469, 330) Me.PictureBox1.TabIndex = 1 Me.PictureBox1.TabStop = False ' 'btnOK ' Me.btnOK.Location = New System.Drawing.Point(201, 339) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(75, 23) Me.btnOK.TabIndex = 2 Me.btnOK.Text = "OK" Me.btnOK.UseVisualStyleBackColor = True ' 'lblversiondatum ' Me.lblversiondatum.BackColor = System.Drawing.Color.White Me.lblversiondatum.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblversiondatum.Location = New System.Drawing.Point(249, 273) Me.lblversiondatum.Name = "lblversiondatum" Me.lblversiondatum.Size = New System.Drawing.Size(193, 24) Me.lblversiondatum.TabIndex = 4 Me.lblversiondatum.Text = "Version " Me.lblversiondatum.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'lblVersion ' Me.lblVersion.BackColor = System.Drawing.Color.White Me.lblVersion.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblVersion.Location = New System.Drawing.Point(245, 249) Me.lblVersion.Name = "lblVersion" Me.lblVersion.Size = New System.Drawing.Size(197, 24) Me.lblVersion.TabIndex = 3 Me.lblVersion.Text = "Version " Me.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'frmAbout ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(464, 374) Me.Controls.Add(Me.lblversiondatum) Me.Controls.Add(Me.lblVersion) Me.Controls.Add(Me.btnOK) Me.Controls.Add(Me.PictureBox1) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "frmAbout" Me.Text = "frmAbout" CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox Friend WithEvents btnOK As System.Windows.Forms.Button Friend WithEvents lblversiondatum As System.Windows.Forms.Label Friend WithEvents lblVersion As System.Windows.Forms.Label End Class