public void import_excel()
 {
     string m_txt_path = WinFormControls.openFileDialog();
     if (m_txt_path != "")
     {
         f352_quan_ly_cong_tac_excel v_f = new f352_quan_ly_cong_tac_excel();
         v_f.displayToInsertExcel(m_txt_path);
     }
 }
 public void import_excel(ref bool trang_thai_hien_tai)
 {
     string m_txt_path = WinFormControls.openFileDialog();
     if (m_txt_path != "")
     {
         f352_quan_ly_cong_tac_excel v_f = new f352_quan_ly_cong_tac_excel();
         v_f.displayToInsertExcel(m_txt_path);
         trang_thai_hien_tai = true;
     }
 }