/Source Code/PowerSong/Item Management/frmVerse.Designer.vb
Visual Basic | 128 lines | 97 code | 5 blank | 26 comment | 0 complexity | 7841163ef9092ada5eb593c17410bbf1 MD5 | raw file
1<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ 2Partial Class frmVerse 3 Inherits System.Windows.Forms.Form 4 5 'Form overrides dispose to clean up the component list. 6 <System.Diagnostics.DebuggerNonUserCode()> _ 7 Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 Try 9 If disposing AndAlso components IsNot Nothing Then 10 components.Dispose() 11 End If 12 Finally 13 MyBase.Dispose(disposing) 14 End Try 15 End Sub 16 17 'Required by the Windows Form Designer 18 Private components As System.ComponentModel.IContainer 19 20 'NOTE: The following procedure is required by the Windows Form Designer 21 'It can be modified using the Windows Form Designer. 22 'Do not modify it using the code editor. 23 <System.Diagnostics.DebuggerStepThrough()> _ 24 Private Sub InitializeComponent() 25 Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel 26 Me.OK_Button = New System.Windows.Forms.Button 27 Me.Cancel_Button = New System.Windows.Forms.Button 28 Me.Label1 = New System.Windows.Forms.Label 29 Me.txtSongName = New System.Windows.Forms.TextBox 30 Me.txtVerse = New System.Windows.Forms.TextBox 31 Me.TableLayoutPanel1.SuspendLayout() 32 Me.SuspendLayout() 33 ' 34 'TableLayoutPanel1 35 ' 36 Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 37 Me.TableLayoutPanel1.ColumnCount = 2 38 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) 39 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) 40 Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 0) 41 Me.TableLayoutPanel1.Controls.Add(Me.Cancel_Button, 1, 0) 42 Me.TableLayoutPanel1.Location = New System.Drawing.Point(277, 274) 43 Me.TableLayoutPanel1.Name = "TableLayoutPanel1" 44 Me.TableLayoutPanel1.RowCount = 1 45 Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) 46 Me.TableLayoutPanel1.Size = New System.Drawing.Size(146, 29) 47 Me.TableLayoutPanel1.TabIndex = 0 48 ' 49 'OK_Button 50 ' 51 Me.OK_Button.Anchor = System.Windows.Forms.AnchorStyles.None 52 Me.OK_Button.Location = New System.Drawing.Point(3, 3) 53 Me.OK_Button.Name = "OK_Button" 54 Me.OK_Button.Size = New System.Drawing.Size(67, 23) 55 Me.OK_Button.TabIndex = 0 56 Me.OK_Button.Text = "OK" 57 ' 58 'Cancel_Button 59 ' 60 Me.Cancel_Button.Anchor = System.Windows.Forms.AnchorStyles.None 61 Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel 62 Me.Cancel_Button.Location = New System.Drawing.Point(76, 3) 63 Me.Cancel_Button.Name = "Cancel_Button" 64 Me.Cancel_Button.Size = New System.Drawing.Size(67, 23) 65 Me.Cancel_Button.TabIndex = 1 66 Me.Cancel_Button.Text = "Cancel" 67 ' 68 'Label1 69 ' 70 Me.Label1.AutoSize = True 71 Me.Label1.Location = New System.Drawing.Point(12, 15) 72 Me.Label1.Name = "Label1" 73 Me.Label1.Size = New System.Drawing.Size(35, 13) 74 Me.Label1.TabIndex = 1 75 Me.Label1.Text = "Song:" 76 ' 77 'txtSongName 78 ' 79 Me.txtSongName.Location = New System.Drawing.Point(53, 12) 80 Me.txtSongName.Name = "txtSongName" 81 Me.txtSongName.ReadOnly = True 82 Me.txtSongName.Size = New System.Drawing.Size(370, 20) 83 Me.txtSongName.TabIndex = 2 84 ' 85 'txtVerse 86 ' 87 Me.txtVerse.AcceptsReturn = True 88 Me.txtVerse.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ 89 Or System.Windows.Forms.AnchorStyles.Left) _ 90 Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 91 Me.txtVerse.Location = New System.Drawing.Point(12, 38) 92 Me.txtVerse.Multiline = True 93 Me.txtVerse.Name = "txtVerse" 94 Me.txtVerse.ScrollBars = System.Windows.Forms.ScrollBars.Both 95 Me.txtVerse.Size = New System.Drawing.Size(411, 230) 96 Me.txtVerse.TabIndex = 3 97 ' 98 'frmVerse 99 ' 100 Me.AcceptButton = Me.OK_Button 101 Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 102 Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 103 Me.CancelButton = Me.Cancel_Button 104 Me.ClientSize = New System.Drawing.Size(435, 315) 105 Me.Controls.Add(Me.txtVerse) 106 Me.Controls.Add(Me.txtSongName) 107 Me.Controls.Add(Me.Label1) 108 Me.Controls.Add(Me.TableLayoutPanel1) 109 Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog 110 Me.MaximizeBox = False 111 Me.MinimizeBox = False 112 Me.Name = "frmVerse" 113 Me.ShowInTaskbar = False 114 Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent 115 Me.Text = "Verse" 116 Me.TableLayoutPanel1.ResumeLayout(False) 117 Me.ResumeLayout(False) 118 Me.PerformLayout() 119 120 End Sub 121 Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel 122 Friend WithEvents OK_Button As System.Windows.Forms.Button 123 Friend WithEvents Cancel_Button As System.Windows.Forms.Button 124 Friend WithEvents Label1 As System.Windows.Forms.Label 125 Friend WithEvents txtSongName As System.Windows.Forms.TextBox 126 Friend WithEvents txtVerse As System.Windows.Forms.TextBox 127 128End Class