_ Partial Class FindReplace Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.WholeWordCheckBox = New System.Windows.Forms.CheckBox() Me.MatchCaseCheckBox = New System.Windows.Forms.CheckBox() Me.FindStatus = New System.Windows.Forms.Label() Me.Button1 = New System.Windows.Forms.Button() Me.ReplaceAllButton = New System.Windows.Forms.Button() Me.ReplaceOnceButton = New System.Windows.Forms.Button() Me.FindMe = New System.Windows.Forms.TextBox() Me.ReplaceWithMe = New System.Windows.Forms.TextBox() Me.ForwardsRadio = New System.Windows.Forms.RadioButton() Me.BackwardsRadio = New System.Windows.Forms.RadioButton() Me.ViewNextButton = New System.Windows.Forms.Button() Me.HighlightAllButton = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'WholeWordCheckBox ' Me.WholeWordCheckBox.AutoSize = True Me.WholeWordCheckBox.Location = New System.Drawing.Point(437, 48) Me.WholeWordCheckBox.Name = "WholeWordCheckBox" Me.WholeWordCheckBox.Size = New System.Drawing.Size(108, 21) Me.WholeWordCheckBox.TabIndex = 11 Me.WholeWordCheckBox.Text = "Whole Word" Me.WholeWordCheckBox.UseVisualStyleBackColor = True ' 'MatchCaseCheckBox ' Me.MatchCaseCheckBox.AutoSize = True Me.MatchCaseCheckBox.Location = New System.Drawing.Point(437, 15) Me.MatchCaseCheckBox.Name = "MatchCaseCheckBox" Me.MatchCaseCheckBox.Size = New System.Drawing.Size(104, 21) Me.MatchCaseCheckBox.TabIndex = 12 Me.MatchCaseCheckBox.Text = "Match Case" Me.MatchCaseCheckBox.UseVisualStyleBackColor = True ' 'FindStatus ' Me.FindStatus.AutoSize = True Me.FindStatus.Font = New System.Drawing.Font("Segoe UI", 7.8!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.FindStatus.ForeColor = System.Drawing.SystemColors.ControlDark Me.FindStatus.Location = New System.Drawing.Point(13, 81) Me.FindStatus.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.FindStatus.Name = "FindStatus" Me.FindStatus.Size = New System.Drawing.Size(27, 19) Me.FindStatus.TabIndex = 10 Me.FindStatus.Text = "<3" ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(13, 111) Me.Button1.Margin = New System.Windows.Forms.Padding(4) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(77, 25) Me.Button1.TabIndex = 9 Me.Button1.Text = "Find" Me.Button1.UseVisualStyleBackColor = True ' 'ReplaceAllButton ' Me.ReplaceAllButton.Location = New System.Drawing.Point(315, 45) Me.ReplaceAllButton.Margin = New System.Windows.Forms.Padding(4) Me.ReplaceAllButton.Name = "ReplaceAllButton" Me.ReplaceAllButton.Size = New System.Drawing.Size(115, 25) Me.ReplaceAllButton.TabIndex = 8 Me.ReplaceAllButton.Text = "Replace all" Me.ReplaceAllButton.UseVisualStyleBackColor = True ' 'ReplaceOnceButton ' Me.ReplaceOnceButton.Location = New System.Drawing.Point(315, 13) Me.ReplaceOnceButton.Margin = New System.Windows.Forms.Padding(4) Me.ReplaceOnceButton.Name = "ReplaceOnceButton" Me.ReplaceOnceButton.Size = New System.Drawing.Size(115, 25) Me.ReplaceOnceButton.TabIndex = 7 Me.ReplaceOnceButton.Text = "Replace once" Me.ReplaceOnceButton.UseVisualStyleBackColor = True ' 'FindMe ' Me.FindMe.Location = New System.Drawing.Point(13, 13) Me.FindMe.Margin = New System.Windows.Forms.Padding(4) Me.FindMe.Name = "FindMe" Me.FindMe.Size = New System.Drawing.Size(291, 22) Me.FindMe.TabIndex = 1 ' 'ReplaceWithMe ' Me.ReplaceWithMe.Location = New System.Drawing.Point(13, 46) Me.ReplaceWithMe.Margin = New System.Windows.Forms.Padding(4) Me.ReplaceWithMe.Name = "ReplaceWithMe" Me.ReplaceWithMe.Size = New System.Drawing.Size(291, 22) Me.ReplaceWithMe.TabIndex = 2 ' 'ForwardsRadio ' Me.ForwardsRadio.AutoSize = True Me.ForwardsRadio.Checked = True Me.ForwardsRadio.Location = New System.Drawing.Point(437, 80) Me.ForwardsRadio.Name = "ForwardsRadio" Me.ForwardsRadio.Size = New System.Drawing.Size(87, 21) Me.ForwardsRadio.TabIndex = 13 Me.ForwardsRadio.TabStop = True Me.ForwardsRadio.Text = "Forwards" Me.ForwardsRadio.UseVisualStyleBackColor = True ' 'BackwardsRadio ' Me.BackwardsRadio.AutoSize = True Me.BackwardsRadio.Location = New System.Drawing.Point(437, 113) Me.BackwardsRadio.Name = "BackwardsRadio" Me.BackwardsRadio.Size = New System.Drawing.Size(97, 21) Me.BackwardsRadio.TabIndex = 13 Me.BackwardsRadio.Text = "Backwards" Me.BackwardsRadio.UseVisualStyleBackColor = True ' 'ViewNextButton ' Me.ViewNextButton.Location = New System.Drawing.Point(315, 78) Me.ViewNextButton.Margin = New System.Windows.Forms.Padding(4) Me.ViewNextButton.Name = "ViewNextButton" Me.ViewNextButton.Size = New System.Drawing.Size(115, 25) Me.ViewNextButton.TabIndex = 8 Me.ViewNextButton.Text = "View next" Me.ViewNextButton.UseVisualStyleBackColor = True ' 'HighlightAllButton ' Me.HighlightAllButton.Location = New System.Drawing.Point(315, 111) Me.HighlightAllButton.Margin = New System.Windows.Forms.Padding(4) Me.HighlightAllButton.Name = "HighlightAllButton" Me.HighlightAllButton.Size = New System.Drawing.Size(115, 25) Me.HighlightAllButton.TabIndex = 8 Me.HighlightAllButton.Text = "Highlight all" Me.HighlightAllButton.UseVisualStyleBackColor = True ' 'FindReplace ' Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(552, 146) Me.Controls.Add(Me.BackwardsRadio) Me.Controls.Add(Me.ForwardsRadio) Me.Controls.Add(Me.WholeWordCheckBox) Me.Controls.Add(Me.MatchCaseCheckBox) Me.Controls.Add(Me.FindStatus) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.HighlightAllButton) Me.Controls.Add(Me.ViewNextButton) Me.Controls.Add(Me.ReplaceAllButton) Me.Controls.Add(Me.ReplaceOnceButton) Me.Controls.Add(Me.ReplaceWithMe) Me.Controls.Add(Me.FindMe) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow Me.Name = "FindReplace" Me.Text = "Replace" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents WholeWordCheckBox As CheckBox Friend WithEvents MatchCaseCheckBox As CheckBox Friend WithEvents FindStatus As Label Friend WithEvents Button1 As Button Friend WithEvents ReplaceAllButton As Button Friend WithEvents ReplaceOnceButton As Button Friend WithEvents FindMe As TextBox Friend WithEvents ReplaceWithMe As TextBox Friend WithEvents ForwardsRadio As RadioButton Friend WithEvents BackwardsRadio As RadioButton Friend WithEvents ViewNextButton As Button Friend WithEvents HighlightAllButton As Button End Class