private void cmdDecrypt_Click(object sender, EventArgs e) { try { if (!VariableCheck()) { return; } mb.DecryptSqlDumpFile(txtSourceFile.Text, txtDestinationFile.Text, txtKey.Text); MessageBox.Show("Done"); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }