Ejemplo n.º 1
0
        private void viewntcBtnClk(object sender, EventArgs e)
        {
            ArrayList y = new ArrayList();

            y = NoticeController.ShowAllNotices();
            new ViewAllNotice(y).Show();
        }
Ejemplo n.º 2
0
        private void ntcBtnClk(object sender, EventArgs e)
        {
            ArrayList b = new ArrayList();

            b = NoticeController.ShowAllNotices();
            ViewAllNotice c = new ViewAllNotice(b);

            c.ShowDialog();
        }
        private void noticeBtnClk(object sender, EventArgs e)
        {
            ArrayList v = new ArrayList();

            v = NoticeController.ShowAllNotices();

            ViewAllNoticeStudent c = new ViewAllNoticeStudent(v);

            c.ShowDialog();
        }