_ Partial Class frmEditBook Inherits BaseEditForm 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 lblBookTitle As System.Windows.Forms.Label Friend WithEvents txtBookTitle As System.Windows.Forms.TextBox Friend WithEvents lblComposer As System.Windows.Forms.Label Friend WithEvents cboComposer As ComboTypeAhead.ComboTypeAhead Friend WithEvents lblPublisher As System.Windows.Forms.Label Friend WithEvents cboPublisher As ComboTypeAhead.ComboTypeAhead Friend WithEvents cboInstrumentation As ComboTypeAhead.ComboTypeAhead Friend WithEvents lblInstrumentation As System.Windows.Forms.Label Private Sub InitializeComponent() Me.lblBookTitle = New System.Windows.Forms.Label Me.txtBookTitle = New System.Windows.Forms.TextBox Me.lblComposer = New System.Windows.Forms.Label Me.cboComposer = New ComboTypeAhead.ComboTypeAhead Me.lblPublisher = New System.Windows.Forms.Label Me.cboPublisher = New ComboTypeAhead.ComboTypeAhead Me.cboInstrumentation = New ComboTypeAhead.ComboTypeAhead Me.lblInstrumentation = New System.Windows.Forms.Label Me.fraAddEdit.SuspendLayout() Me.SuspendLayout() ' 'fraAddEdit ' Me.fraAddEdit.Controls.Add(Me.cboInstrumentation) Me.fraAddEdit.Controls.Add(Me.lblInstrumentation) Me.fraAddEdit.Controls.Add(Me.cboPublisher) Me.fraAddEdit.Controls.Add(Me.lblPublisher) Me.fraAddEdit.Controls.Add(Me.cboComposer) Me.fraAddEdit.Controls.Add(Me.lblComposer) Me.fraAddEdit.Controls.Add(Me.txtBookTitle) Me.fraAddEdit.Controls.Add(Me.lblBookTitle) Me.fraAddEdit.Location = New System.Drawing.Point(10, 438) Me.fraAddEdit.Size = New System.Drawing.Size(1064, 142) Me.fraAddEdit.Controls.SetChildIndex(Me.lblBookTitle, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.txtBookTitle, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.lblComposer, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.cboComposer, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.lblPublisher, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.cboPublisher, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.lblInstrumentation, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.cboInstrumentation, 0) ' 'lblBookTitle ' Me.lblBookTitle.Location = New System.Drawing.Point(16, 24) Me.lblBookTitle.Name = "lblBookTitle" Me.lblBookTitle.Size = New System.Drawing.Size(96, 16) Me.lblBookTitle.TabIndex = 3 Me.lblBookTitle.Text = "Book Title" ' 'txtBookTitle ' Me.txtBookTitle.Location = New System.Drawing.Point(109, 24) Me.txtBookTitle.Name = "txtBookTitle" Me.txtBookTitle.Size = New System.Drawing.Size(424, 20) Me.txtBookTitle.TabIndex = 4 ' 'lblComposer ' Me.lblComposer.Location = New System.Drawing.Point(16, 48) Me.lblComposer.Name = "lblComposer" Me.lblComposer.Size = New System.Drawing.Size(80, 16) Me.lblComposer.TabIndex = 5 Me.lblComposer.Text = "Composer" ' 'cboComposer ' Me.cboComposer.Location = New System.Drawing.Point(109, 48) Me.cboComposer.Name = "cboComposer" Me.cboComposer.Size = New System.Drawing.Size(288, 21) Me.cboComposer.Sorted = True Me.cboComposer.TabIndex = 6 ' 'lblPublisher ' Me.lblPublisher.Location = New System.Drawing.Point(16, 107) Me.lblPublisher.Name = "lblPublisher" Me.lblPublisher.Size = New System.Drawing.Size(80, 16) Me.lblPublisher.TabIndex = 9 Me.lblPublisher.Text = "Publisher" ' 'cboPublisher ' Me.cboPublisher.Location = New System.Drawing.Point(109, 107) Me.cboPublisher.Name = "cboPublisher" Me.cboPublisher.Size = New System.Drawing.Size(288, 21) Me.cboPublisher.Sorted = True Me.cboPublisher.TabIndex = 10 ' 'cboInstrumentation ' Me.cboInstrumentation.Location = New System.Drawing.Point(109, 80) Me.cboInstrumentation.Name = "cboInstrumentation" Me.cboInstrumentation.Size = New System.Drawing.Size(288, 21) Me.cboInstrumentation.Sorted = True Me.cboInstrumentation.TabIndex = 8 ' 'lblInstrumentation ' Me.lblInstrumentation.Location = New System.Drawing.Point(16, 80) Me.lblInstrumentation.Name = "lblInstrumentation" Me.lblInstrumentation.Size = New System.Drawing.Size(96, 16) Me.lblInstrumentation.TabIndex = 7 Me.lblInstrumentation.Text = "Instrumentation" ' 'frmEditBook ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(1080, 586) Me.Name = "frmEditBook" Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual Me.Text = "Edit Book" Me.fraAddEdit.ResumeLayout(False) Me.fraAddEdit.PerformLayout() Me.ResumeLayout(False) End Sub End Class