Partial Class frmAddAlternateHymnTuneName Inherits System.Windows.Forms.Form Protected 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 lblAlternateHymnTuneName As System.Windows.Forms.Label Friend WithEvents lstAlternateHymnTuneNames As System.Windows.Forms.ListBox Friend WithEvents btnOK As System.Windows.Forms.Button Friend WithEvents btnCancel As System.Windows.Forms.Button Private Sub InitializeComponent() Me.lblAlternateHymnTuneName = New System.Windows.Forms.Label Me.lstAlternateHymnTuneNames = New System.Windows.Forms.ListBox Me.btnOK = New System.Windows.Forms.Button Me.btnCancel = New System.Windows.Forms.Button Me.SuspendLayout() ' 'lblAlternateHymnTuneName ' Me.lblAlternateHymnTuneName.Location = New System.Drawing.Point(8, 8) Me.lblAlternateHymnTuneName.Name = "lblAlternateHymnTuneName" Me.lblAlternateHymnTuneName.Size = New System.Drawing.Size(448, 16) Me.lblAlternateHymnTuneName.TabIndex = 0 ' 'lstAlternateHymnTuneNames ' Me.lstAlternateHymnTuneNames.Location = New System.Drawing.Point(8, 24) Me.lstAlternateHymnTuneNames.Name = "lstAlternateHymnTuneNames" Me.lstAlternateHymnTuneNames.Size = New System.Drawing.Size(456, 433) Me.lstAlternateHymnTuneNames.Sorted = True Me.lstAlternateHymnTuneNames.TabIndex = 1 ' 'btnOK ' Me.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK Me.btnOK.Location = New System.Drawing.Point(480, 8) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(112, 24) Me.btnOK.TabIndex = 2 Me.btnOK.Text = "&OK" ' 'btnCancel ' Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.btnCancel.Location = New System.Drawing.Point(480, 40) Me.btnCancel.Name = "btnCancel" Me.btnCancel.Size = New System.Drawing.Size(112, 24) Me.btnCancel.TabIndex = 3 Me.btnCancel.Text = "&Cancel" ' 'frmAddAlternateHymnTuneName ' Me.AcceptButton = Me.btnOK Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.CancelButton = Me.btnCancel Me.ClientSize = New System.Drawing.Size(600, 462) Me.ControlBox = False Me.Controls.Add(Me.btnCancel) Me.Controls.Add(Me.btnOK) Me.Controls.Add(Me.lstAlternateHymnTuneNames) Me.Controls.Add(Me.lblAlternateHymnTuneName) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmAddAlternateHymnTuneName" Me.Text = "Add Alternate Hymn Tune Name" Me.ResumeLayout(False) End Sub End Class