Public Class Form_Detail
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads 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
'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.
Friend WithEvents lblInfo As System.Windows.Forms.Label
Friend WithEvents txtInfo As System.Windows.Forms.TextBox
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.lblInfo = New System.Windows.Forms.Label()
Me.txtInfo = New System.Windows.Forms.TextBox()
Me.SuspendLayout()
'
'lblInfo
'
Me.lblInfo.BackColor = System.Drawing.SystemColors.ActiveBorder
Me.lblInfo.Font = New System.Drawing.Font("Monotype Corsiva", 21.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblInfo.Location = New System.Drawing.Point(24, 8)
Me.lblInfo.Name = "lblInfo"
Me.lblInfo.Size = New System.Drawing.Size(256, 32)
Me.lblInfo.TabIndex = 0
Me.lblInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'txtInfo
'
Me.txtInfo.AutoSize = False
Me.txtInfo.BackColor = System.Drawing.SystemColors.Window
Me.txtInfo.Dock = System.Windows.Forms.DockStyle.Bottom
Me.txtInfo.Location = New System.Drawing.Point(0, 52)
Me.txtInfo.Multiline = True
Me.txtInfo.Name = "txtInfo"
Me.txtInfo.ReadOnly = True
Me.txtInfo.ScrollBars = System.Windows.Forms.ScrollBars.Both
Me.txtInfo.Size = New System.Drawing.Size(292, 88)
Me.txtInfo.TabIndex = 1
Me.txtInfo.Text = ""
'
'Form_Detail
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 140)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.txtInfo, Me.lblInfo})
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "Form_Detail"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.ResumeLayout(False)
End Sub
#End Region
End Class