PageRenderTime 48ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

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