_ Partial Class AboutBox Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) End Sub Friend WithEvents TableLayoutPanel As System.Windows.Forms.TableLayoutPanel Friend WithEvents LogoPictureBox As System.Windows.Forms.PictureBox Friend WithEvents LabelProductName As System.Windows.Forms.Label Friend WithEvents LabelVersion As System.Windows.Forms.Label Friend WithEvents LabelCompanyName As System.Windows.Forms.Label Friend WithEvents OKButton As System.Windows.Forms.Button Friend WithEvents LabelCopyright As System.Windows.Forms.Label '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(AboutBox)) Me.TableLayoutPanel = New System.Windows.Forms.TableLayoutPanel() Me.LogoPictureBox = New System.Windows.Forms.PictureBox() Me.LabelProductName = New System.Windows.Forms.Label() Me.LabelVersion = New System.Windows.Forms.Label() Me.LabelCopyright = New System.Windows.Forms.Label() Me.LabelCompanyName = New System.Windows.Forms.Label() Me.TextBoxDescription = New System.Windows.Forms.TextBox() Me.OKButton = New System.Windows.Forms.Button() Me.TableLayoutPanel.SuspendLayout() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'TableLayoutPanel ' Me.TableLayoutPanel.ColumnCount = 1 Me.TableLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel.Controls.Add(Me.LogoPictureBox, 0, 0) Me.TableLayoutPanel.Controls.Add(Me.LabelProductName, 0, 1) Me.TableLayoutPanel.Controls.Add(Me.LabelVersion, 0, 2) Me.TableLayoutPanel.Controls.Add(Me.LabelCopyright, 0, 3) Me.TableLayoutPanel.Controls.Add(Me.LabelCompanyName, 0, 4) Me.TableLayoutPanel.Controls.Add(Me.TextBoxDescription, 0, 5) Me.TableLayoutPanel.Controls.Add(Me.OKButton, 0, 6) Me.TableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill Me.TableLayoutPanel.Location = New System.Drawing.Point(9, 9) Me.TableLayoutPanel.Name = "TableLayoutPanel" Me.TableLayoutPanel.RowCount = 7 Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 75.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30.0!)) Me.TableLayoutPanel.Size = New System.Drawing.Size(312, 285) Me.TableLayoutPanel.TabIndex = 0 ' 'LogoPictureBox ' Me.TableLayoutPanel.SetColumnSpan(Me.LogoPictureBox, 2) Me.LogoPictureBox.Dock = System.Windows.Forms.DockStyle.Left Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image) Me.LogoPictureBox.Location = New System.Drawing.Point(3, 3) Me.LogoPictureBox.Name = "LogoPictureBox" Me.LogoPictureBox.Size = New System.Drawing.Size(306, 69) Me.LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom Me.LogoPictureBox.TabIndex = 0 Me.LogoPictureBox.TabStop = False ' 'LabelProductName ' Me.LabelProductName.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelProductName.Location = New System.Drawing.Point(6, 75) Me.LabelProductName.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelProductName.MaximumSize = New System.Drawing.Size(0, 17) Me.LabelProductName.Name = "LabelProductName" Me.LabelProductName.Size = New System.Drawing.Size(303, 17) Me.LabelProductName.TabIndex = 0 Me.LabelProductName.Text = "Product Name" Me.LabelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelVersion ' Me.LabelVersion.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelVersion.Location = New System.Drawing.Point(6, 95) Me.LabelVersion.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelVersion.MaximumSize = New System.Drawing.Size(0, 17) Me.LabelVersion.Name = "LabelVersion" Me.LabelVersion.Size = New System.Drawing.Size(303, 17) Me.LabelVersion.TabIndex = 0 Me.LabelVersion.Text = "Version" Me.LabelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelCopyright ' Me.LabelCopyright.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelCopyright.Location = New System.Drawing.Point(6, 115) Me.LabelCopyright.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelCopyright.MaximumSize = New System.Drawing.Size(0, 17) Me.LabelCopyright.Name = "LabelCopyright" Me.LabelCopyright.Size = New System.Drawing.Size(303, 17) Me.LabelCopyright.TabIndex = 0 Me.LabelCopyright.Text = "Copyright" Me.LabelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelCompanyName ' Me.LabelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelCompanyName.Location = New System.Drawing.Point(6, 137) Me.LabelCompanyName.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelCompanyName.MaximumSize = New System.Drawing.Size(0, 17) Me.LabelCompanyName.Name = "LabelCompanyName" Me.LabelCompanyName.Size = New System.Drawing.Size(303, 17) Me.LabelCompanyName.TabIndex = 0 Me.LabelCompanyName.Text = "Company Name" Me.LabelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'TextBoxDescription ' Me.TextBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill Me.TextBoxDescription.Location = New System.Drawing.Point(6, 160) Me.TextBoxDescription.Margin = New System.Windows.Forms.Padding(6, 3, 3, 3) Me.TextBoxDescription.Multiline = True Me.TextBoxDescription.Name = "TextBoxDescription" Me.TextBoxDescription.ReadOnly = True Me.TextBoxDescription.Size = New System.Drawing.Size(303, 92) Me.TextBoxDescription.TabIndex = 2 Me.TextBoxDescription.TabStop = False Me.TextBoxDescription.Text = "Demo control application for the EQUITEL E301 roadside telephones" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "For more inf" & _ "ormation, see the accompaning documentation " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "or contact factory at support@equi" & _ "tel.es" ' 'OKButton ' Me.OKButton.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.OKButton.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.OKButton.Location = New System.Drawing.Point(234, 259) Me.OKButton.Name = "OKButton" Me.OKButton.Size = New System.Drawing.Size(75, 23) Me.OKButton.TabIndex = 0 Me.OKButton.Text = "&OK" ' 'AboutBox ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(330, 303) Me.Controls.Add(Me.TableLayoutPanel) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "AboutBox" Me.Padding = New System.Windows.Forms.Padding(9) Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "E301 control demo " Me.TableLayoutPanel.ResumeLayout(False) Me.TableLayoutPanel.PerformLayout() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents TextBoxDescription As System.Windows.Forms.TextBox End Class