namespace SHNDecrypt { partial class searchReplace { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(searchReplace)); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.txtFind = new System.Windows.Forms.TextBox(); this.txtReplaceWith = new System.Windows.Forms.TextBox(); this.btnFindNext = new System.Windows.Forms.Button(); this.btnReplace = new System.Windows.Forms.Button(); this.btnReplaceAll = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.label3 = new System.Windows.Forms.Label(); this.cmbColumn = new System.Windows.Forms.ComboBox(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(22, 22); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 13); this.label1.TabIndex = 0; this.label1.Text = "Find what:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(6, 48); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(72, 13); this.label2.TabIndex = 1; this.label2.Text = "Replace with:"; // // txtFind // this.txtFind.Location = new System.Drawing.Point(84, 19); this.txtFind.Name = "txtFind"; this.txtFind.Size = new System.Drawing.Size(125, 20); this.txtFind.TabIndex = 1; this.txtFind.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFind_KeyDown); // // txtReplaceWith // this.txtReplaceWith.Location = new System.Drawing.Point(84, 45); this.txtReplaceWith.Name = "txtReplaceWith"; this.txtReplaceWith.Size = new System.Drawing.Size(125, 20); this.txtReplaceWith.TabIndex = 2; this.txtReplaceWith.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFind_KeyDown); // // btnFindNext // this.btnFindNext.Location = new System.Drawing.Point(215, 18); this.btnFindNext.Name = "btnFindNext"; this.btnFindNext.Size = new System.Drawing.Size(75, 21); this.btnFindNext.TabIndex = 4; this.btnFindNext.Text = "Find Next"; this.btnFindNext.UseVisualStyleBackColor = true; this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click); // // btnReplace // this.btnReplace.Location = new System.Drawing.Point(215, 44); this.btnReplace.Name = "btnReplace"; this.btnReplace.Size = new System.Drawing.Size(75, 21); this.btnReplace.TabIndex = 5; this.btnReplace.Text = "Replace"; this.btnReplace.UseVisualStyleBackColor = true; this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click); // // btnReplaceAll // this.btnReplaceAll.Location = new System.Drawing.Point(215, 71); this.btnReplaceAll.Name = "btnReplaceAll"; this.btnReplaceAll.Size = new System.Drawing.Size(75, 21); this.btnReplaceAll.TabIndex = 6; this.btnReplaceAll.Text = "Replace All"; this.btnReplaceAll.UseVisualStyleBackColor = true; this.btnReplaceAll.Click += new System.EventHandler(this.btnReplaceAll_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.cmbColumn); this.groupBox1.Controls.Add(this.txtReplaceWith); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.btnReplaceAll); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.btnReplace); this.groupBox1.Controls.Add(this.txtFind); this.groupBox1.Controls.Add(this.btnFindNext); this.groupBox1.Location = new System.Drawing.Point(12, 3); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(303, 107); this.groupBox1.TabIndex = 8; this.groupBox1.TabStop = false; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(22, 75); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(56, 13); this.label3.TabIndex = 8; this.label3.Text = "In column:"; // // cmbColumn // this.cmbColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbColumn.FormattingEnabled = true; this.cmbColumn.Location = new System.Drawing.Point(84, 72); this.cmbColumn.Name = "cmbColumn"; this.cmbColumn.Size = new System.Drawing.Size(125, 21); this.cmbColumn.TabIndex = 3; this.cmbColumn.SelectedIndexChanged += new System.EventHandler(this.cmbColumn_SelectedIndexChanged); // // searchReplace // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(326, 120); this.Controls.Add(this.groupBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "searchReplace"; this.Opacity = 0.9D; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Replace"; this.Activated += new System.EventHandler(this.searchReplace_Activated); this.Deactivate += new System.EventHandler(this.searchReplace_Deactivate); this.Load += new System.EventHandler(this.searchReplace_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtFind; private System.Windows.Forms.TextBox txtReplaceWith; private System.Windows.Forms.Button btnFindNext; private System.Windows.Forms.Button btnReplace; private System.Windows.Forms.Button btnReplaceAll; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label3; private System.Windows.Forms.ComboBox cmbColumn; } }