Ejemplo n.º 1
0
 private void f_Load_DG()
 {
     try
     {
         m_dsds = m_v.f_get_v_nhombhyt("", "", "", "", "");
         if (m_dsds.Tables[0].Rows.Count <= 0)
         {
             if (MessageBox.Show(this, lan.Change_language_MessageText("Chưa khai nhóm viện phí BHYT!") + "\n" + lan.Change_language_MessageText("Có muốn hệ thống tạo nhóm BHYT mặc định không?"), m_v.s_AppName, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
             {
                 m_v.f_default_nhombhyt();
                 m_dsds = m_v.f_get_v_nhombhyt("", "", "", "", "");
             }
         }
         dataGridView1.DataSource = m_dsds.Tables[0];
         toolStrip_Tim_TextChanged(null, null);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }