예제 #1
0
        private void showPaymentProcess()
        {
            frmPayment f        = frmPayment.CreateInstance();
            MsgHandler dbAction = new MsgHandler(f.DbAction);

            modDbAction = dbAction;
            f.MdiParent = this;

            showManaged(f);
        }
예제 #2
0
        public static frmPayment CreateInstance()
        {
            frmPayment f;
            if (thisForm == null)
            {
                thisForm = new frmPayment();
            }
            else if (thisForm != new frmPayment())
            {
                thisForm = new frmPayment();
            }

            f = (frmPayment)thisForm;

            return f;
        }
예제 #3
0
        public static frmPayment CreateInstance()
        {
            frmPayment f;

            if (thisForm == null)
            {
                thisForm = new frmPayment();
            }
            else if (thisForm != new frmPayment())
            {
                thisForm = new frmPayment();
            }

            f = (frmPayment)thisForm;

            return(f);
        }