Ejemplo n.º 1
0
 //异常查询界面
 public ConditionsQuery(string WindowsName, List <string> DataTableColumn, List <productionOrder> DataCollection, AbnormalIputQury f)
 {
     InitializeComponent();
     this.WindowText        = WindowsName;
     this.strlist           = DataTableColumn;
     this.polist            = DataCollection;
     this.formabnormalQuery = f;
 }
Ejemplo n.º 2
0
 public ConditionsQuery(string WindowsName, List <string> DataTableColumn, List <selectConditionsQueryPStaffResumeModel2> QueryList, AbnormalIputQury f)
 {
     InitializeComponent();
     this.WindowText        = WindowsName;
     this.strlist           = DataTableColumn;
     this.query2List        = QueryList;
     this.formabnormalQuery = f;
 }
Ejemplo n.º 3
0
        private void btn_abnormal_Click(object sender, EventArgs e)
        {
            if (!(UsersHelp.systemAdimin || UsersHelp.abnormal))
            {
                MessageBox.Show("抱歉,您没有访问此功能的权限");
                return;
            }

            AbnormalIputQury aq = new AbnormalIputQury(this);

            aq.MdiParent = this;
            SetMdiForm(aq.Text, typeof(AbnormalIputQury));
        }