Пример #1
0
        private void barButtonItem5_ItemClick(object sender, ItemClickEventArgs e)
        {
            this.toolStripStatusLabelNote.Text = "";

            Form frm = this.checkExists(typeof(FormNhapDiem));

            if (frm != null)
            {
                frm.Activate();
            }
            else
            {
                FormNhapDiem f = new FormNhapDiem(this);
                f.MdiParent = this;
                f.Show();
            }
        }
Пример #2
0
 public FormDiemTBM_HK(FormChinh formChinh, FormNhapDiem formNhapDiem)
 {
     InitializeComponent();
     this.formChinh    = formChinh;
     this.formNhapDiem = formNhapDiem;
 }