예제 #1
0
        private void barButtonItem19_ItemClick(object sender, ItemClickEventArgs e)
        {
            this.toolStripStatusLabelNote.Text = "";

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

            if (frm != null)
            {
                frm.Activate();
            }
            else
            {
                FormPhanCongGV f = new FormPhanCongGV(this);
                f.MdiParent = this;
                f.Show();
            }
        }
예제 #2
0
 public FormTimHK_PhanCong(FormChinh formChinh, FormPhanCongGV formPhanCongGV)
 {
     InitializeComponent();
     this.formChinh      = formChinh;
     this.formPhanCongGV = formPhanCongGV;
 }