Exemplo n.º 1
0
 public FrmEmpPathAdd(int type,FrmPathManage frmPathManage)
 {
     InitializeComponent();
     m_frmPathManage = frmPathManage;
     m_type = type;
     pathinfoBll.PathInfo_BindComboBox(cmbPathID);
     deptBll.getDeptAddAll1(cmbDept);
 }
Exemplo n.º 2
0
 public FrmEmpPathAdd(int type, FrmPathManage frmPathManage)
 {
     InitializeComponent();
     m_frmPathManage = frmPathManage;
     m_type          = type;
     pathinfoBll.PathInfo_BindComboBox(cmbPathID);
     deptBll.getDeptAddAll1(cmbDept);
 }
Exemplo n.º 3
0
 public FrmPathDetailAdd(int type, FrmPathManage frmPathManage)
 {
     InitializeComponent();
     m_frmPathManage = frmPathManage;
     m_type          = type;
 }
Exemplo n.º 4
0
 public FrmPathDetailAdd(int type,FrmPathManage frmPathManage)
 {
     InitializeComponent();
     m_frmPathManage = frmPathManage;
     m_type = type;
 }
Exemplo n.º 5
0
        //巡检
        private void tsmiInspectionConfig_Click(object sender, EventArgs e)
        {
            if (Searcher.FindFormByName("FrmPathManage"))
            {
                return;
            }

            //验证用户密码
            if (!IsValidate())
            {
                return;
            }

            ILogger.Write(EnumLogType.OperateLog, strLogPath + DateTime.Now.ToString("yyyy-MM-dd") + ".xml", LoginBLL.user, "打开巡检菜单");

            PathManage.FrmPathManage frmE = new PathManage.FrmPathManage();
            frmE.Show(dockPanel1, DockState.Document);
        }