void m_cmd_nguoi_sd_ItemClick(object sender, ItemClickEventArgs e)
        {
            try
            {
                f999_ht_nguoi_su_dung v_frm = new f999_ht_nguoi_su_dung();
                if (IsExistFormName(v_frm)) return;

                v_frm.MdiParent = this;
                v_frm.Show();
            }
            catch (Exception v_e)
            {
                CSystemLog_301.ExceptionHandle(v_e);
            }
        }
        private void m_cmd_phan_quyen_Click(object sender, EventArgs e)
        {
            try
            {
                f999_ht_nguoi_su_dung v_frm = new f999_ht_nguoi_su_dung();
                m_tab_add.AddTab(xtraTabControl1, v_frm.Name, v_frm.Text, v_frm, new UserControl());
            }
            catch (Exception v_e)
            {
                CSystemLog_301.ExceptionHandle(v_e);

            }
        }
 private void m_menuitem_user_Click(object sender, EventArgs e)
 {
     try
     {
         f999_ht_nguoi_su_dung frm = new f999_ht_nguoi_su_dung();
         frm.Show();
     }
     catch (Exception v_e)
     {
         CSystemLog_301.ExceptionHandle(v_e);
     }
 }
Example #4
0
 private void show_manager_user()
 {
     if (!CAppContext_201.IsHavingQuyen(IP.Core.IPSystemAdmin.PHAN_QUYEN.QLHT_NGUOI_SU_DUNG))
     {
         BaseMessages.MsgBox_Infor(THONG_BAO.ER_KHONG_CO_QUYEN_SU_DUNG);
         return;
     }
     f999_ht_nguoi_su_dung v_frm_999 = new f999_ht_nguoi_su_dung();
     v_frm_999.display();
 }