Ejemplo n.º 1
0
        private void SEC_USER_LIST_Click(object sender, EventArgs e)
        {
            if (this.CheckChildFrmExist("SEC_USER_LIST") == true)
            {
                return;
            }
            SEC_USER_LIST newFrm = new SEC_USER_LIST();

            if (newFrm != null && !ShowMDIChild(newFrm, newFrm))
            {
                newFrm.Dispose();
                newFrm = null;
            }
        }
Ejemplo n.º 2
0
        private void SEC_USER_LIST_Click(object sender, EventArgs e)
        {
            frmMain frmmain = (frmMain)this.ParentForm;

            if (frmmain.CheckChildFrmExist("SEC_USER_LIST") == true)
            {
                return;
            }
            SEC_USER_LIST newFrm = new SEC_USER_LIST();

            if (newFrm != null && !frmmain.ShowMDIChild(newFrm, newFrm))
            {
                newFrm.Dispose();
                newFrm = null;
            }
        }
Ejemplo n.º 3
0
        private void btnUserList_Click(object sender, EventArgs e)
        {
            SEC_USER_LIST frm = new SEC_USER_LIST();

            frm.ShowDialog();
        }