Пример #1
0
        private void wfnRcptsForm_Load(object sender, EventArgs e)
        {
            consgmtRcpt conRcp = null;

            //conRcp = (consgmtRcpt)isFormAlreadyOpen(typeof(consgmtRcpt));
            if (conRcp == null)
            {
                conRcp                 = new consgmtRcpt();
                conRcp.TopLevel        = false;
                conRcp.FormBorderStyle = FormBorderStyle.None;
                conRcp.Dock            = DockStyle.Fill;
                this.Controls.Add(conRcp);
                Global.rcptFrm = conRcp;

                conRcp.Show();
                conRcp.BringToFront();
            }
            else
            {
                conRcp.BringToFront();
            }
        }