Exemplo n.º 1
0
        //月报表
        private void btnMonthTable_Click(object sender, EventArgs e)
        {
            var    db  = new BathDBDataContext(LogIn.connectionString);
            string pro = ((Button)sender).Text;

            if (!BathClass.getAuthority(db, LogIn.m_User, pro))
            {
                GeneralClass.printErrorMsg("权限不够,不能访问!");
                return;
            }
            MonthTableForm monthTableForm = new MonthTableForm();

            monthTableForm.ShowDialog();
        }
Exemplo n.º 2
0
 //月报表
 private void btnMonthTable_Click(object sender, EventArgs e)
 {
     var db = new BathDBDataContext(LogIn.connectionString);
     string pro = ((Button)sender).Text;
     if (!BathClass.getAuthority(db, LogIn.m_User, pro))
     {
         GeneralClass.printErrorMsg("权限不够,不能访问!");
         return;
     }
     MonthTableForm monthTableForm = new MonthTableForm();
     monthTableForm.ShowDialog();
 }