private void button15_Click(object sender, EventArgs e)
 {
     Standardization frm = new Standardization(DB_Path, TempPath, RocksmithDLCPath, AllowEncriptb, AllowORIGDeleteb);
     frm.Show();
 }
 private void btn_Standardization_Click(object sender, EventArgs e)
 {
     var DBb_Path = (chbx_DefaultDB.Checked == true ? MyAppWD : txt_DBFolder.Text) + "\\Files.accdb";
     //MessageBox.Show(DBb_Path);
     Standardization frm = new Standardization(DBb_Path, txt_TempPath.Text, txt_RocksmithDLCPath.Text, chbx_Additional_Manipulations.GetItemChecked(39), chbx_Additional_Manipulations.GetItemChecked(40));
     frm.Show();
 }