Skip to content

Commit

Permalink
setup the bookmark output file name
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Aug 23, 2020
1 parent d2d21db commit 2085ae2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PointerSearcher/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion PointerSearcher/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ private async void buttonSearch_Click(object sender, EventArgs e)
buttonSearch.Enabled = false;
buttonNarrowDown.Enabled = true;
textBox2.Text = dataGridView1.Rows[0].Cells[0].Value.ToString();
textBox2.Text = textBox2.Text.Remove(textBox2.Text.Length - 4,4 )+"bmk";
SetProgressBar(0);
try
{
Expand Down Expand Up @@ -161,7 +162,7 @@ await Task.Run(() =>
private void PrintPath()
{
textBox1.Text = "";
if (result.Count > 100)
if (result.Count > 1000)
{
string str;
str = result.Count.ToString();
Expand Down

0 comments on commit 2085ae2

Please sign in to comment.