コード例 #1
0
        private void btnView_Click(object sender, EventArgs e)
        {
            if (m_SoLuuTru.Trim() == "")
            {
                MessageBox.Show("Bạn vui lòng chọn giấy ra viện.", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
                //lblThongBao.Text = "Bạn vui lòng chọn bảng kê để xem!";
                //timerThongBao.Enabled = true;
                return;
            }

            frmReport frm = new frmReport("GiayRaVien");
            frm.m_SoLuuTru = m_SoLuuTru;
            frm.m_LoaiGiay = Code;
            frm.Show();
        }
コード例 #2
0
        private void btnView_Click(object sender, EventArgs e)
        {
            if (m_BangKe_Id == 0)
            {
                MessageBox.Show("Bạn vui lòng chọn bảng kê để xem.", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
                //lblThongBao.Text = "Bạn vui lòng chọn bảng kê để xem!";
                //timerThongBao.Enabled = true;
                return;
            }

            frmReport frm = new frmReport("BCVP");
            frm.m_BangKe_Id = m_BangKe_Id;
            frm.m_LoaiBangKe = m_LoaiBangKe;
            frm.Show();
        }