PageRenderTime 49ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/VBVstoExcelWorkbook/CourseQueryPane.Designer.vb

#
Visual Basic | 118 lines | 79 code | 9 blank | 30 comment | 0 complexity | 22ab5edbf45e381a8eca3ce738e327c7 MD5 | raw file
  1. <System.ComponentModel.ToolboxItemAttribute(False)> _
  2. Partial Public Class CourseQueryPane
  3. Inherits System.Windows.Forms.UserControl
  4. <System.Diagnostics.DebuggerNonUserCode()> _
  5. Public Sub New()
  6. MyBase.New()
  7. 'This call is required by the Windows Form Designer.
  8. InitializeComponent()
  9. End Sub
  10. 'UserControl overrides dispose to clean up the component list.
  11. <System.Diagnostics.DebuggerNonUserCode()> _
  12. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  13. If disposing AndAlso components IsNot Nothing Then
  14. components.Dispose()
  15. End If
  16. MyBase.Dispose(disposing)
  17. End Sub
  18. 'Required by the Windows Form Designer
  19. Private components As System.ComponentModel.IContainer
  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.components = New System.ComponentModel.Container
  26. Me.cboName = New System.Windows.Forms.ComboBox
  27. Me.studentListBindingSource = New System.Windows.Forms.BindingSource(Me.components)
  28. Me.SchoolDataSet = New VBVstoExcelWorkbook.SchoolDataSet
  29. Me.cmdQuery = New System.Windows.Forms.Button
  30. Me.lblName = New System.Windows.Forms.Label
  31. Me.lblTitle = New System.Windows.Forms.Label
  32. Me.StudentListTableAdapter = New VBVstoExcelWorkbook.SchoolDataSetTableAdapters.StudentListTableAdapter
  33. CType(Me.studentListBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
  34. CType(Me.SchoolDataSet, System.ComponentModel.ISupportInitialize).BeginInit()
  35. Me.SuspendLayout()
  36. '
  37. 'cboName
  38. '
  39. Me.cboName.DataSource = Me.studentListBindingSource
  40. Me.cboName.DisplayMember = "StudentName"
  41. Me.cboName.FormattingEnabled = True
  42. Me.cboName.Location = New System.Drawing.Point(48, 31)
  43. Me.cboName.Name = "cboName"
  44. Me.cboName.Size = New System.Drawing.Size(127, 21)
  45. Me.cboName.TabIndex = 8
  46. '
  47. 'studentListBindingSource
  48. '
  49. Me.studentListBindingSource.DataMember = "StudentList"
  50. Me.studentListBindingSource.DataSource = Me.SchoolDataSet
  51. '
  52. 'SchoolDataSet
  53. '
  54. Me.SchoolDataSet.DataSetName = "SchoolDataSet"
  55. Me.SchoolDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
  56. '
  57. 'cmdQuery
  58. '
  59. Me.cmdQuery.Location = New System.Drawing.Point(100, 57)
  60. Me.cmdQuery.Name = "cmdQuery"
  61. Me.cmdQuery.Size = New System.Drawing.Size(75, 23)
  62. Me.cmdQuery.TabIndex = 7
  63. Me.cmdQuery.Text = "Query"
  64. Me.cmdQuery.UseVisualStyleBackColor = True
  65. '
  66. 'lblName
  67. '
  68. Me.lblName.AutoSize = True
  69. Me.lblName.Location = New System.Drawing.Point(4, 34)
  70. Me.lblName.Name = "lblName"
  71. Me.lblName.Size = New System.Drawing.Size(38, 13)
  72. Me.lblName.TabIndex = 6
  73. Me.lblName.Text = "Name:"
  74. '
  75. 'lblTitle
  76. '
  77. Me.lblTitle.AutoSize = True
  78. Me.lblTitle.Font = New System.Drawing.Font("Arial Unicode MS", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  79. Me.lblTitle.Location = New System.Drawing.Point(4, 4)
  80. Me.lblTitle.Name = "lblTitle"
  81. Me.lblTitle.Size = New System.Drawing.Size(103, 16)
  82. Me.lblTitle.TabIndex = 5
  83. Me.lblTitle.Text = "Query Courses"
  84. '
  85. 'StudentListTableAdapter
  86. '
  87. Me.StudentListTableAdapter.ClearBeforeFill = True
  88. '
  89. 'CourseQueryPane
  90. '
  91. Me.Controls.Add(Me.cboName)
  92. Me.Controls.Add(Me.cmdQuery)
  93. Me.Controls.Add(Me.lblName)
  94. Me.Controls.Add(Me.lblTitle)
  95. Me.Name = "CourseQueryPane"
  96. Me.Size = New System.Drawing.Size(193, 94)
  97. CType(Me.studentListBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
  98. CType(Me.SchoolDataSet, System.ComponentModel.ISupportInitialize).EndInit()
  99. Me.ResumeLayout(False)
  100. Me.PerformLayout()
  101. End Sub
  102. Private WithEvents cboName As System.Windows.Forms.ComboBox
  103. Private WithEvents cmdQuery As System.Windows.Forms.Button
  104. Private WithEvents lblName As System.Windows.Forms.Label
  105. Private WithEvents lblTitle As System.Windows.Forms.Label
  106. Private WithEvents studentListBindingSource As System.Windows.Forms.BindingSource
  107. Friend WithEvents SchoolDataSet As VBVstoExcelWorkbook.SchoolDataSet
  108. Friend WithEvents StudentListTableAdapter As VBVstoExcelWorkbook.SchoolDataSetTableAdapters.StudentListTableAdapter
  109. End Class