_ Partial Class frmSplash 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(frmSplash)) Me.PictureBox1 = New System.Windows.Forms.PictureBox Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.lblVersion = New System.Windows.Forms.Label Me.Panel1 = New System.Windows.Forms.Panel Me.lblversiondatum = New System.Windows.Forms.Label CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() Me.Panel1.SuspendLayout() Me.SuspendLayout() ' 'PictureBox1 ' Me.PictureBox1.Dock = System.Windows.Forms.DockStyle.Fill 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(463, 334) Me.PictureBox1.TabIndex = 0 Me.PictureBox1.TabStop = False ' 'Timer1 ' Me.Timer1.Enabled = True Me.Timer1.Interval = 3000 ' '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(3, 0) Me.lblVersion.Name = "lblVersion" Me.lblVersion.Size = New System.Drawing.Size(197, 24) Me.lblVersion.TabIndex = 1 Me.lblVersion.Text = "Version " Me.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'Panel1 ' Me.Panel1.BackColor = System.Drawing.Color.White Me.Panel1.Controls.Add(Me.lblversiondatum) Me.Panel1.Controls.Add(Me.lblVersion) Me.Panel1.Location = New System.Drawing.Point(246, 252) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(195, 48) Me.Panel1.TabIndex = 2 ' '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(0, 24) Me.lblversiondatum.Name = "lblversiondatum" Me.lblversiondatum.Size = New System.Drawing.Size(200, 24) Me.lblversiondatum.TabIndex = 2 Me.lblversiondatum.Text = "Version " Me.lblversiondatum.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'frmSplash ' Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None Me.ClientSize = New System.Drawing.Size(463, 334) Me.ControlBox = False Me.Controls.Add(Me.Panel1) Me.Controls.Add(Me.PictureBox1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Name = "frmSplash" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "frmSplash" CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() Me.Panel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox Friend WithEvents Timer1 As System.Windows.Forms.Timer Friend WithEvents lblVersion As System.Windows.Forms.Label Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents lblversiondatum As System.Windows.Forms.Label End Class