PageRenderTime 42ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Visual Basic | 131 lines | 86 code | 8 blank | 37 comment | 0 complexity | c9f23ce1aa5ed73fbba1b6d5a46f3bef MD5 | raw file
  1. Partial Public Class MainForm
  2. ''' <summary>
  3. ''' Required designer variable.
  4. ''' </summary>
  5. Private components As System.ComponentModel.IContainer = Nothing
  6. ''' <summary>
  7. ''' Clean up any resources being used.
  8. ''' </summary>
  9. ''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  10. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  11. If disposing AndAlso (components IsNot Nothing) Then
  12. components.Dispose()
  13. End If
  14. MyBase.Dispose(disposing)
  15. End Sub
  16. #Region "Windows Form Designer generated code"
  17. ''' <summary>
  18. ''' Required method for Designer support - do not modify
  19. ''' the contents of this method with the code editor.
  20. ''' </summary>
  21. Private Sub InitializeComponent()
  22. Me.lbRegKeyPath = New Label()
  23. Me.tbRegkeyPath = New TextBox()
  24. Me.btnMonitor = New Button()
  25. Me.lstChanges = New ListBox()
  26. Me.panel1 = New Panel()
  27. Me.cmbHives = New ComboBox()
  28. Me.panel2 = New Panel()
  29. Me.panel1.SuspendLayout()
  30. Me.panel2.SuspendLayout()
  31. Me.SuspendLayout()
  32. '
  33. ' lbRegKeyPath
  34. '
  35. Me.lbRegKeyPath.AutoSize = True
  36. Me.lbRegKeyPath.Location = New Point(11, 21)
  37. Me.lbRegKeyPath.Name = "lbRegKeyPath"
  38. Me.lbRegKeyPath.Size = New Size(91, 13)
  39. Me.lbRegKeyPath.TabIndex = 0
  40. Me.lbRegKeyPath.Text = "Registry Key Path"
  41. '
  42. ' tbRegkeyPath
  43. '
  44. Me.tbRegkeyPath.Location = New Point(264, 18)
  45. Me.tbRegkeyPath.Name = "tbRegkeyPath"
  46. Me.tbRegkeyPath.Size = New Size(491, 20)
  47. Me.tbRegkeyPath.TabIndex = 1
  48. Me.tbRegkeyPath.Text = "SOFTWARE\\Microsoft"
  49. '
  50. ' btnMonitor
  51. '
  52. Me.btnMonitor.Location = New Point(761, 16)
  53. Me.btnMonitor.Name = "btnMonitor"
  54. Me.btnMonitor.Size = New Size(78, 23)
  55. Me.btnMonitor.TabIndex = 2
  56. Me.btnMonitor.Text = "Start Monitor"
  57. Me.btnMonitor.UseVisualStyleBackColor = True
  58. ' Me.btnMonitor.Click += New System.EventHandler(Me.btnMonitor_Click)
  59. '
  60. ' lstChanges
  61. '
  62. Me.lstChanges.Dock = DockStyle.Fill
  63. Me.lstChanges.FormattingEnabled = True
  64. Me.lstChanges.Location = New Point(0, 0)
  65. Me.lstChanges.Name = "lstChanges"
  66. Me.lstChanges.Size = New Size(851, 348)
  67. Me.lstChanges.TabIndex = 3
  68. '
  69. ' panel1
  70. '
  71. Me.panel1.Controls.Add(Me.cmbHives)
  72. Me.panel1.Controls.Add(Me.lbRegKeyPath)
  73. Me.panel1.Controls.Add(Me.tbRegkeyPath)
  74. Me.panel1.Controls.Add(Me.btnMonitor)
  75. Me.panel1.Dock = DockStyle.Top
  76. Me.panel1.Location = New Point(0, 0)
  77. Me.panel1.Name = "panel1"
  78. Me.panel1.Size = New Size(851, 43)
  79. Me.panel1.TabIndex = 4
  80. '
  81. ' cmbHives
  82. '
  83. Me.cmbHives.DropDownStyle = ComboBoxStyle.DropDownList
  84. Me.cmbHives.FormattingEnabled = True
  85. Me.cmbHives.Location = New Point(108, 17)
  86. Me.cmbHives.Name = "cmbHives"
  87. Me.cmbHives.Size = New Size(150, 21)
  88. Me.cmbHives.TabIndex = 3
  89. '
  90. ' panel2
  91. '
  92. Me.panel2.Controls.Add(Me.lstChanges)
  93. Me.panel2.Dock = DockStyle.Fill
  94. Me.panel2.Location = New Point(0, 43)
  95. Me.panel2.Name = "panel2"
  96. Me.panel2.Size = New Size(851, 348)
  97. Me.panel2.TabIndex = 5
  98. '
  99. ' MainForm
  100. '
  101. Me.AutoScaleDimensions = New SizeF(6.0F, 13.0F)
  102. Me.AutoScaleMode = AutoScaleMode.Font
  103. Me.ClientSize = New Size(851, 391)
  104. Me.Controls.Add(Me.panel2)
  105. Me.Controls.Add(Me.panel1)
  106. Me.MinimumSize = New Size(867, 429)
  107. Me.Name = "MainForm"
  108. Me.Text = "Registry Monitor"
  109. ' Me.Load += New System.EventHandler(Me.MainForm_Load)
  110. Me.panel1.ResumeLayout(False)
  111. Me.panel1.PerformLayout()
  112. Me.panel2.ResumeLayout(False)
  113. Me.ResumeLayout(False)
  114. End Sub
  115. #End Region
  116. Private lbRegKeyPath As Label
  117. Private tbRegkeyPath As TextBox
  118. Private WithEvents btnMonitor As Button
  119. Private lstChanges As ListBox
  120. Private panel1 As Panel
  121. Private panel2 As Panel
  122. Private cmbHives As ComboBox
  123. End Class