diff --git a/PointerSearcher/Form1.Designer.cs b/PointerSearcher/Form1.Designer.cs index c979207..2211588 100644 --- a/PointerSearcher/Form1.Designer.cs +++ b/PointerSearcher/Form1.Designer.cs @@ -51,6 +51,7 @@ private void InitializeComponent() this.Export_button = new System.Windows.Forms.Button(); this.textBox2 = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); + this.button1 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // @@ -246,11 +247,22 @@ private void InitializeComponent() this.label4.Text = "Book Mark File"; this.label4.Click += new System.EventHandler(this.label4_Click); // + // button1 + // + this.button1.Location = new System.Drawing.Point(505, 232); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(23, 23); + this.button1.TabIndex = 16; + this.button1.Text = "P"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(669, 452); + this.Controls.Add(this.button1); this.Controls.Add(this.label4); this.Controls.Add(this.textBox2); this.Controls.Add(this.Export_button); @@ -268,7 +280,7 @@ private void InitializeComponent() this.Controls.Add(this.textBox1); this.Controls.Add(this.buttonRead); this.Name = "Form1"; - this.Text = "EdiZon SE PointerSearcher 0.3"; + this.Text = "EdiZon SE PointerSearcher 0.3a"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); @@ -300,6 +312,7 @@ private void InitializeComponent() private System.Windows.Forms.Button Export_button; private System.Windows.Forms.TextBox textBox2; private System.Windows.Forms.Label label4; + private System.Windows.Forms.Button button1; } } diff --git a/PointerSearcher/Form1.cs b/PointerSearcher/Form1.cs index a353ade..7a7c6df 100644 --- a/PointerSearcher/Form1.cs +++ b/PointerSearcher/Form1.cs @@ -98,7 +98,7 @@ private async void buttonSearch_Click(object sender, EventArgs e) textBox1.Text = ""; buttonRead.Enabled = false; buttonSearch.Enabled = false; - buttonNarrowDown.Enabled = false; + buttonNarrowDown.Enabled = true; textBox2.Text = dataGridView1.Rows[0].Cells[0].Value.ToString(); SetProgressBar(0); try @@ -442,5 +442,10 @@ private void label4_Click(object sender, EventArgs e) { } + + private void button1_Click(object sender, EventArgs e) + { + PrintPath(); + } } }