Ejemplo n.º 1
0
 private void insert_dm_tu_dien()
 {
     try{
         m_grv_dm_tu_dien.EditIndex = -1;
         if (Page.IsValid)
         {
             if (!check_validate())
             {
                 return;
             }
             if (!check_ma_tu_dien())
             {
                 m_lbl_mess.Text = "Mã từ điển này đã tồn tại, nhập mã khác"; return;
             }
             form_2_us_object();
             m_us_dm_tu_dien.Insert();
             m_lbl_mess.Text = "Đã thêm mới thành công.";
             clear_dm_tu_dien();
             load_data_2_grid();
         }
     }
     catch (Exception v_e)
     {
         m_lbl_mess.Text = "Lỗi trong quá trình thêm mới bản ghi.";
         throw v_e;
     }
 }