PageRenderTime 44ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/VBListFilesInDirectory/MainForm.Designer.vb

#
Visual Basic | 150 lines | 133 code | 3 blank | 14 comment | 0 complexity | ef5da9c9ffd4abac98fac61e17bd241e MD5 | raw file
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class MainForm
  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.chkFiles = New System.Windows.Forms.CheckBox
  23. Me.chkDir = New System.Windows.Forms.CheckBox
  24. Me.label1 = New System.Windows.Forms.Label
  25. Me.txtPattern = New System.Windows.Forms.TextBox
  26. Me.lblCount = New System.Windows.Forms.Label
  27. Me.lstFiles = New System.Windows.Forms.ListBox
  28. Me.btnList = New System.Windows.Forms.Button
  29. Me.txtDir = New System.Windows.Forms.TextBox
  30. Me.SuspendLayout()
  31. '
  32. 'chkFiles
  33. '
  34. Me.chkFiles.AutoSize = True
  35. Me.chkFiles.Checked = True
  36. Me.chkFiles.CheckState = System.Windows.Forms.CheckState.Checked
  37. Me.chkFiles.Location = New System.Drawing.Point(86, 38)
  38. Me.chkFiles.Name = "chkFiles"
  39. Me.chkFiles.Size = New System.Drawing.Size(47, 17)
  40. Me.chkFiles.TabIndex = 15
  41. Me.chkFiles.Text = "Files"
  42. Me.chkFiles.UseVisualStyleBackColor = True
  43. '
  44. 'chkDir
  45. '
  46. Me.chkDir.AutoSize = True
  47. Me.chkDir.Checked = True
  48. Me.chkDir.CheckState = System.Windows.Forms.CheckState.Checked
  49. Me.chkDir.Location = New System.Drawing.Point(12, 38)
  50. Me.chkDir.Name = "chkDir"
  51. Me.chkDir.Size = New System.Drawing.Size(68, 17)
  52. Me.chkDir.TabIndex = 14
  53. Me.chkDir.Text = "Directory"
  54. Me.chkDir.UseVisualStyleBackColor = True
  55. '
  56. 'label1
  57. '
  58. Me.label1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  59. Me.label1.AutoSize = True
  60. Me.label1.Location = New System.Drawing.Point(307, 15)
  61. Me.label1.Name = "label1"
  62. Me.label1.Size = New System.Drawing.Size(12, 13)
  63. Me.label1.TabIndex = 9
  64. Me.label1.Text = "\"
  65. '
  66. 'txtPattern
  67. '
  68. Me.txtPattern.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  69. Me.txtPattern.Location = New System.Drawing.Point(325, 12)
  70. Me.txtPattern.Name = "txtPattern"
  71. Me.txtPattern.Size = New System.Drawing.Size(96, 20)
  72. Me.txtPattern.TabIndex = 10
  73. Me.txtPattern.Text = "*.*"
  74. '
  75. 'lblCount
  76. '
  77. Me.lblCount.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  78. Me.lblCount.AutoSize = True
  79. Me.lblCount.Location = New System.Drawing.Point(12, 364)
  80. Me.lblCount.Name = "lblCount"
  81. Me.lblCount.Size = New System.Drawing.Size(58, 13)
  82. Me.lblCount.TabIndex = 13
  83. Me.lblCount.Text = "Item Count"
  84. '
  85. 'lstFiles
  86. '
  87. Me.lstFiles.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  88. Or System.Windows.Forms.AnchorStyles.Left) _
  89. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  90. Me.lstFiles.FormattingEnabled = True
  91. Me.lstFiles.Location = New System.Drawing.Point(12, 64)
  92. Me.lstFiles.Name = "lstFiles"
  93. Me.lstFiles.Size = New System.Drawing.Size(490, 290)
  94. Me.lstFiles.TabIndex = 12
  95. '
  96. 'btnList
  97. '
  98. Me.btnList.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  99. Me.btnList.Enabled = False
  100. Me.btnList.Location = New System.Drawing.Point(427, 10)
  101. Me.btnList.Name = "btnList"
  102. Me.btnList.Size = New System.Drawing.Size(75, 23)
  103. Me.btnList.TabIndex = 11
  104. Me.btnList.Text = "List"
  105. Me.btnList.UseVisualStyleBackColor = True
  106. '
  107. 'txtDir
  108. '
  109. Me.txtDir.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  110. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  111. Me.txtDir.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
  112. Me.txtDir.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories
  113. Me.txtDir.Location = New System.Drawing.Point(12, 12)
  114. Me.txtDir.Name = "txtDir"
  115. Me.txtDir.Size = New System.Drawing.Size(289, 20)
  116. Me.txtDir.TabIndex = 8
  117. '
  118. 'MainForm
  119. '
  120. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  121. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  122. Me.ClientSize = New System.Drawing.Size(514, 386)
  123. Me.Controls.Add(Me.chkFiles)
  124. Me.Controls.Add(Me.chkDir)
  125. Me.Controls.Add(Me.label1)
  126. Me.Controls.Add(Me.txtPattern)
  127. Me.Controls.Add(Me.lblCount)
  128. Me.Controls.Add(Me.lstFiles)
  129. Me.Controls.Add(Me.btnList)
  130. Me.Controls.Add(Me.txtDir)
  131. Me.MinimumSize = New System.Drawing.Size(500, 400)
  132. Me.Name = "MainForm"
  133. Me.Text = "File Enum Test"
  134. Me.ResumeLayout(False)
  135. Me.PerformLayout()
  136. End Sub
  137. Private WithEvents chkFiles As System.Windows.Forms.CheckBox
  138. Private WithEvents chkDir As System.Windows.Forms.CheckBox
  139. Private WithEvents label1 As System.Windows.Forms.Label
  140. Private WithEvents txtPattern As System.Windows.Forms.TextBox
  141. Private WithEvents lblCount As System.Windows.Forms.Label
  142. Private WithEvents lstFiles As System.Windows.Forms.ListBox
  143. Private WithEvents btnList As System.Windows.Forms.Button
  144. Private WithEvents txtDir As System.Windows.Forms.TextBox
  145. End Class