Skip to content

Commit

Permalink
1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Marotco committed Nov 23, 2020
1 parent 3636b0d commit 9879083
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 88 deletions.
2 changes: 2 additions & 0 deletions CryptCP-automatizator/Cert_selector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ private void Cert_selector_Load(object sender, EventArgs e)
listBox1.DataSource = Certs;
store.Close();
textBox1.Focus();
textBox1.Select();
this.ActiveControl = textBox1;
}

internal string Get_Selected_Cert()
Expand Down
177 changes: 89 additions & 88 deletions CryptCP-automatizator/Form1.Designer.cs

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

11 changes: 11 additions & 0 deletions CryptCP-automatizator/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -598,5 +598,16 @@ private void button30_Click(object sender, EventArgs e)
File.Delete(file_to_decrypt.Text);
}
}

private void Work_folder_TextChanged(object sender, EventArgs e)
{
if (Directory.Exists(Work_folder.Text))
{
Work_folder.Text = Work_folder.Text;


Save_Parameters();
}
}
}
}

0 comments on commit 9879083

Please sign in to comment.