Esempio n. 1
0
        private void btnXemTruongTheoNgay_ItemClick(object sender, ItemClickEventArgs e)
        {
            if (edtNgayTruong.EditValue == null)
            {
                sttHeader.Caption = "Vui lòng chọn ngày";
                edtNgayTruong.Links[0].Focus();
                return;
            }
            if (wb_HK == null)
            {
                sttHeader.Caption = "Vui lòng nhập file TKB Học Kỳ";
                edtNgayLop.Links[0].Focus();
                return;
            }

            DateTime dt = (DateTime)edtNgayTruong.EditValue;

            if (TKBLopForm == null)
            {
                TKBLopForm           = new TKBLopForm();
                TKBLopForm.MdiParent = this;
                TKBLopForm.Show();
            }
            TKBLopForm.showNgayToanTruong(wb_HK, dt);
        }
Esempio n. 2
0
        private void btnTKBLopTheoNgay_ItemClick(object sender, ItemClickEventArgs e)
        {
            if (edtNgayLop.EditValue == null)
            {
                sttHeader.Caption = "Vui lòng chọn ngày";
                edtNgayLop.Links[0].Focus();
                return;
            }
            if (txtLop.EditValue == null)
            {
                sttHeader.Caption = "Vui lòng chọn lớp";
                edtNgayLop.Links[0].Focus();
                return;
            }
            if (wb_HK == null)
            {
                sttHeader.Caption = "Vui lòng nhập file TKB Học Kỳ";
                edtNgayLop.Links[0].Focus();
                return;
            }

            DateTime dt = (DateTime)edtNgayLop.EditValue;

            if (TKBLopForm == null)
            {
                TKBLopForm           = new TKBLopForm();
                TKBLopForm.MdiParent = this;
                TKBLopForm.Show();
            }
            if (wb_HK.Worksheets.Contains(txtLop.EditValue.ToString()))
            {
                TKBLopForm.showNgayTheoLop(wb_HK.Worksheets[txtLop.EditValue.ToString()], dt);
            }
        }