private void btnBackup_Click(object sender, EventArgs e)
 {
     try
     {
         string path = string.Format("{0}\\TravelData-{1}{2}.bak", txtPath.Text, DateTime.Now.ToShortDateString().Replace('/', '-'),
                                     DateTime.Now.ToShortTimeString().Replace(':', '-'));
         //string path = txtPath.Text + "\\Pharmacy_DB " , DateTime.Now.ToShortDateString().Replace('/', '-') ,
         //    DateTime.Now.ToShortTimeString().Replace(':', '-') + ".bak";
         ClassSetting.Back_up(path);
         MessageBox.Show("تم اخذ نسخة احتياطية");
         //string.Format(txtPath.Text);
     }
     catch (Exception ex)
     {
         MessageBox.Show("يرجى التخزين على قرص اخر مختلف عن قرص النظام ");
     }
 }