Partial Class frmEditHymnal 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 lblHymnalName As System.Windows.Forms.Label Friend WithEvents txtHymnalName As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents txtHymnalAbbreviation As System.Windows.Forms.TextBox Private Sub InitializeComponent() Me.lblHymnalName = New System.Windows.Forms.Label Me.txtHymnalName = New System.Windows.Forms.TextBox Me.Label1 = New System.Windows.Forms.Label Me.txtHymnalAbbreviation = New System.Windows.Forms.TextBox Me.fraAddEdit.SuspendLayout() Me.SuspendLayout() ' 'fraAddEdit ' Me.fraAddEdit.Controls.Add(Me.txtHymnalAbbreviation) Me.fraAddEdit.Controls.Add(Me.Label1) Me.fraAddEdit.Controls.Add(Me.txtHymnalName) Me.fraAddEdit.Controls.Add(Me.lblHymnalName) Me.fraAddEdit.Location = New System.Drawing.Point(10, 481) Me.fraAddEdit.Size = New System.Drawing.Size(1064, 111) Me.fraAddEdit.Controls.SetChildIndex(Me.lblHymnalName, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.txtHymnalName, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.Label1, 0) Me.fraAddEdit.Controls.SetChildIndex(Me.txtHymnalAbbreviation, 0) ' 'lblHymnalName ' Me.lblHymnalName.Location = New System.Drawing.Point(8, 24) Me.lblHymnalName.Name = "lblHymnalName" Me.lblHymnalName.Size = New System.Drawing.Size(80, 16) Me.lblHymnalName.TabIndex = 3 Me.lblHymnalName.Text = "Hymnal Name" ' 'txtHymnalName ' Me.txtHymnalName.Location = New System.Drawing.Point(128, 24) Me.txtHymnalName.Name = "txtHymnalName" Me.txtHymnalName.Size = New System.Drawing.Size(360, 20) Me.txtHymnalName.TabIndex = 4 ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(8, 56) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(112, 16) Me.Label1.TabIndex = 5 Me.Label1.Text = "Hymnal Abbreviation" ' 'txtHymnalAbbreviation ' Me.txtHymnalAbbreviation.Location = New System.Drawing.Point(128, 56) Me.txtHymnalAbbreviation.Name = "txtHymnalAbbreviation" Me.txtHymnalAbbreviation.Size = New System.Drawing.Size(88, 20) Me.txtHymnalAbbreviation.TabIndex = 6 ' 'frmEditHymnal ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(1080, 598) Me.Name = "frmEditHymnal" Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual Me.Text = "Edit Hymnal" Me.fraAddEdit.ResumeLayout(False) Me.fraAddEdit.PerformLayout() Me.ResumeLayout(False) End Sub End Class