• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# DANHMUC.DMUC_DCHUNG类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中VNS.HIS.UI.DANHMUC.DMUC_DCHUNG的典型用法代码示例。如果您正苦于以下问题:C# DMUC_DCHUNG类的具体用法?C# DMUC_DCHUNG怎么用?C# DMUC_DCHUNG使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



DMUC_DCHUNG类属于VNS.HIS.UI.DANHMUC命名空间,在下文中一共展示了DMUC_DCHUNG类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: ShowMe

        public static void ShowMe(AutoCompleteTextbox_Danhmucchung txt)
        {
            try
            {
                DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txt.LOAI_DANHMUC);
                _DMUC_DCHUNG.ShowDialog();
                if (!_DMUC_DCHUNG.m_blnCancel)
                {
                    string oldCode = txt.myCode;
                    txt.Init();
                    txt.SetCode(oldCode);
                    txt.Focus();
                }
            }
            catch(Exception ex)
            {
                Utility.CatchException(ex);

            }
        }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:20,代码来源:dmucchunghelper.cs


示例2: txtKqdieutri__OnShowData

 void txtKqdieutri__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtKqdieutri.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtKqdieutri.Text;
         txtKqdieutri.Init();
         txtKqdieutri._Text = oldCode;
         txtKqdieutri.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:12,代码来源:frm_Phieuravien.cs


示例3: txtphuongtienvc__OnSaveAs

 void txtphuongtienvc__OnSaveAs()
 {
     if (Utility.DoTrim(txtHuongdieutri.Text) == "") return;
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtphuongtienvc.LOAI_DANHMUC);
     _DMUC_DCHUNG.SetStatus(true, txtphuongtienvc.Text);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtphuongtienvc.Text;
         txtphuongtienvc.Init();
         txtphuongtienvc._Text = oldCode;
         txtphuongtienvc.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:14,代码来源:frm_chuyenvien.cs


示例4: cmdThemnguoinhuy_Click

 void cmdThemnguoinhuy_Click(object sender, EventArgs e)
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtDiadiem.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtDiadiem.myCode;
         txtDiadiem.Init();
         txtDiadiem.SetCode(oldCode);
         txtDiadiem.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:12,代码来源:frm_themmoi_phieuthanhlythuoc.cs


示例5: txtLoaiBN__OnSaveAs

 void txtLoaiBN__OnSaveAs()
 {
     if (Utility.DoTrim(txtLoaiBN.Text) == "") return;
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtLoaiBN.LOAI_DANHMUC);
     _DMUC_DCHUNG.SetStatus(true, txtLoaiBN.Text);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtLoaiBN.myCode;
         txtLoaiBN.Init();
         txtLoaiBN.SetCode(oldCode);
         txtLoaiBN.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:14,代码来源:frm_KCB_DANGKY.cs


示例6: cmdThemLydochietkhau_Click

 void cmdThemLydochietkhau_Click(object sender, EventArgs e)
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG("LYDOCHIETKHAU");
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtLydochietkhau.myCode;
         txtLydochietkhau.Init();
         txtLydochietkhau.SetCode(oldCode);
         txtLydochietkhau.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:12,代码来源:frm_ChietkhauTrenHoadon.cs


示例7: txtCachDung__OnShowData

 private void txtCachDung__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtCachDung.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtCachDung.myCode;
         txtCachDung.Init();
         txtCachDung.SetCode(oldCode);
         txtCachDung.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:12,代码来源:frm_KCB_KeVacxin_Tiemchung.cs


示例8: txtTinhtrangravien__OnSaveAs

 void txtTinhtrangravien__OnSaveAs()
 {
     if (Utility.DoTrim(txtTinhtrangravien.Text) == "") return;
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtTinhtrangravien.LOAI_DANHMUC);
     _DMUC_DCHUNG.SetStatus(true, txtTinhtrangravien.Text);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtTinhtrangravien.Text;
         txtTinhtrangravien.Init();
         txtTinhtrangravien._Text = oldCode;
         txtTinhtrangravien.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:14,代码来源:frm_Phieuravien.cs


示例9: txtNhommau__OnSaveAs

 private void txtNhommau__OnSaveAs()
 {
     if (Utility.DoTrim(txtNhommau.Text) == "") return;
     var _DMUC_DCHUNG = new DMUC_DCHUNG(txtNhommau.LOAI_DANHMUC);
     _DMUC_DCHUNG.SetStatus(true, txtNhommau.Text);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtNhommau.myCode;
         txtNhommau.Init();
         txtNhommau.SetCode(oldCode);
         txtNhommau.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:14,代码来源:frm_KCB_THAMKHAM.cs


示例10: txtDonvitinh__OnShowData

 void txtDonvitinh__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG("DONVITINH");
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtDonvitinh.myCode;
         txtDonvitinh.Init();
         txtDonvitinh.SetCode(oldCode);
         txtDonvitinh.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:12,代码来源:frm_themmoi_phongban.cs


示例11: txtHuongdieutri__OnShowData

 void txtHuongdieutri__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtHuongdieutri.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtHuongdieutri.myCode;
         txtHuongdieutri.Init();
         txtHuongdieutri.SetCode(oldCode);
         txtHuongdieutri.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:12,代码来源:frm_KCB_THAMKHAM.cs


示例12: txtTrangthainguoibenh__OnShowData

 void txtTrangthainguoibenh__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtTrangthainguoibenh.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtTrangthainguoibenh.Text;
         txtTrangthainguoibenh.Init();
         txtTrangthainguoibenh._Text = oldCode;
         txtTrangthainguoibenh.Focus();
     }
 }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:12,代码来源:frm_chuyenvien.cs


示例13: txtphuongtienvc__OnShowData

        void txtphuongtienvc__OnShowData()
        {
            DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtphuongtienvc.LOAI_DANHMUC);

            _DMUC_DCHUNG.ShowDialog();
            if (!_DMUC_DCHUNG.m_blnCancel)
            {
                string oldCode = txtphuongtienvc.Text;
                txtphuongtienvc.Init();
                txtphuongtienvc._Text = oldCode;
                txtphuongtienvc.Focus();
            }
        }
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:13,代码来源:frm_chuyenvien.cs


示例14: txtPhuongphapdieutri__OnSaveAs

 void txtPhuongphapdieutri__OnSaveAs()
 {
     if (Utility.DoTrim(txtPhuongphapdieutri.Text) == "") return;
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtKieuchuyenvien.LOAI_DANHMUC);
     _DMUC_DCHUNG.SetStatus(true, txtKieuchuyenvien.Text);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtKieuchuyenvien.Text;
         txtKieuchuyenvien.Init();
         txtKieuchuyenvien._Text = oldCode;
         txtKieuchuyenvien.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:14,代码来源:frm_Phieuravien.cs


示例15: txtNhommau__OnShowData

 private void txtNhommau__OnShowData()
 {
     var _DMUC_DCHUNG = new DMUC_DCHUNG(txtNhommau.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtNhommau.myCode;
         txtNhommau.Init();
         txtNhommau.SetCode(oldCode);
         txtNhommau.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:12,代码来源:frm_KCB_THAMKHAM.cs


示例16: txtPhuongphapdieutri__OnShowData

 void txtPhuongphapdieutri__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtKieuchuyenvien.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtKieuchuyenvien.Text;
         txtKieuchuyenvien.Init();
         txtKieuchuyenvien._Text = oldCode;
         txtKieuchuyenvien.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:12,代码来源:frm_Phieuravien.cs


示例17: txtKieuthuocVT__OnShowData

 void txtKieuthuocVT__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtKieuthuocVT.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtKieuthuocVT.myCode;
         txtKieuthuocVT.Init();
         txtKieuthuocVT.SetCode(oldCode);
         txtKieuthuocVT.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSPharmacy,代码行数:12,代码来源:frm_themmoi_thuoc.cs


示例18: txtTinhtrangravien__OnShowData

 void txtTinhtrangravien__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtTinhtrangravien.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtTinhtrangravien.Text;
         txtTinhtrangravien.Init();
         txtTinhtrangravien._Text = oldCode;
         txtTinhtrangravien.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:12,代码来源:frm_Phieuravien.cs


示例19: txtDangBaoChe__OnShowData

 void txtDangBaoChe__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtDangBaoChe.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtDangBaoChe.myCode;
         txtDangBaoChe.Init();
         txtDangBaoChe.SetCode(oldCode);
         txtDangBaoChe.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSPharmacy,代码行数:12,代码来源:frm_themmoi_thuoc.cs


示例20: txtNhacungcap__OnShowData

 void txtNhacungcap__OnShowData()
 {
     DMUC_DCHUNG _DMUC_DCHUNG = new DMUC_DCHUNG(txtNhacungcap.LOAI_DANHMUC);
     _DMUC_DCHUNG.ShowDialog();
     if (!_DMUC_DCHUNG.m_blnCancel)
     {
         string oldCode = txtNhacungcap.myCode;
         txtNhacungcap.Init();
         txtNhacungcap.SetCode(oldCode);
         txtNhacungcap.Focus();
     }
 }
开发者ID:vmshis2020,项目名称:VMSPharmacy,代码行数:12,代码来源:frm_themmoi_PhieutrathuocNhacungcap.cs



注:本文中的VNS.HIS.UI.DANHMUC.DMUC_DCHUNG类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Libs.frmPrintPreview类代码示例发布时间:2022-05-26
下一篇:
C# Controllers.clsExcelResult类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap