_ Partial Class frmSplashScreen Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub Friend WithEvents AppTitle As System.Windows.Forms.Label Friend WithEvents Version As System.Windows.Forms.Label Friend WithEvents CLIV As System.Windows.Forms.Label Friend WithEvents MainLayoutPanel As System.Windows.Forms.TableLayoutPanel Friend WithEvents DetailsLayoutPanel As System.Windows.Forms.TableLayoutPanel 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSplashScreen)) Me.MainLayoutPanel = New System.Windows.Forms.TableLayoutPanel Me.AppTitle = New System.Windows.Forms.Label Me.DetailsLayoutPanel = New System.Windows.Forms.TableLayoutPanel Me.Version = New System.Windows.Forms.Label Me.CLIV = New System.Windows.Forms.Label Me.MainLayoutPanel.SuspendLayout() Me.DetailsLayoutPanel.SuspendLayout() Me.SuspendLayout() ' 'MainLayoutPanel ' Me.MainLayoutPanel.BackgroundImage = CType(resources.GetObject("MainLayoutPanel.BackgroundImage"), System.Drawing.Image) Me.MainLayoutPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch Me.MainLayoutPanel.ColumnCount = 2 Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 168.0!)) Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 175.0!)) Me.MainLayoutPanel.Controls.Add(Me.AppTitle, 1, 0) Me.MainLayoutPanel.Controls.Add(Me.DetailsLayoutPanel, 1, 1) Me.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill Me.MainLayoutPanel.Location = New System.Drawing.Point(0, 0) Me.MainLayoutPanel.Name = "MainLayoutPanel" Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 162.0!)) Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 94.0!)) Me.MainLayoutPanel.Size = New System.Drawing.Size(496, 303) Me.MainLayoutPanel.TabIndex = 0 ' 'AppTitle ' Me.AppTitle.Anchor = System.Windows.Forms.AnchorStyles.None Me.AppTitle.BackColor = System.Drawing.Color.Transparent Me.AppTitle.Font = New System.Drawing.Font("Verdana", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.AppTitle.Location = New System.Drawing.Point(171, 65) Me.AppTitle.Name = "AppTitle" Me.AppTitle.Size = New System.Drawing.Size(322, 31) Me.AppTitle.TabIndex = 0 Me.AppTitle.Text = "Handbrake for Windows" Me.AppTitle.TextAlign = System.Drawing.ContentAlignment.BottomLeft ' 'DetailsLayoutPanel ' Me.DetailsLayoutPanel.Anchor = System.Windows.Forms.AnchorStyles.None Me.DetailsLayoutPanel.BackColor = System.Drawing.Color.Transparent Me.DetailsLayoutPanel.ColumnCount = 1 Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 247.0!)) Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 142.0!)) Me.DetailsLayoutPanel.Controls.Add(Me.Version, 0, 0) Me.DetailsLayoutPanel.Controls.Add(Me.CLIV, 0, 1) Me.DetailsLayoutPanel.Location = New System.Drawing.Point(171, 169) Me.DetailsLayoutPanel.Name = "DetailsLayoutPanel" Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 15.07936!)) Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 84.92063!)) Me.DetailsLayoutPanel.Size = New System.Drawing.Size(322, 126) Me.DetailsLayoutPanel.TabIndex = 1 ' 'Version ' Me.Version.Anchor = System.Windows.Forms.AnchorStyles.None Me.Version.BackColor = System.Drawing.Color.Transparent Me.Version.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Version.Location = New System.Drawing.Point(3, 0) Me.Version.Name = "Version" Me.Version.Size = New System.Drawing.Size(316, 18) Me.Version.TabIndex = 1 Me.Version.Text = "Version 2.25 (beta)" ' 'CLIV ' Me.CLIV.Anchor = System.Windows.Forms.AnchorStyles.None Me.CLIV.BackColor = System.Drawing.Color.Transparent Me.CLIV.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.CLIV.Location = New System.Drawing.Point(3, 18) Me.CLIV.Name = "CLIV" Me.CLIV.Size = New System.Drawing.Size(316, 108) Me.CLIV.TabIndex = 2 Me.CLIV.Text = "Windows CLI Version: 0.8.5b1" ' 'frmSplashScreen ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(496, 303) Me.ControlBox = False Me.Controls.Add(Me.MainLayoutPanel) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmSplashScreen" Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.MainLayoutPanel.ResumeLayout(False) Me.DetailsLayoutPanel.ResumeLayout(False) Me.ResumeLayout(False) End Sub End Class