Ejemplo n.º 1
0
        private void lblMNo_Click(object sender, EventArgs e)
        {
            frmSelIOBillMat mat = new frmSelIOBillMat {
                BClass                  = 1,
                AppInformation          = base.AppInformation,
                UserInformation         = base.UserInformation,
                DoSelIOStoreMatBillData = new DoSelIOStoreMatBillDataEvent(this.doSelIOStoreMatBillData)
            };

            mat.ShowDialog();
            mat.Dispose();
        }
Ejemplo n.º 2
0
        private void lblMNo_Click(object sender, EventArgs e)
        {
            //
            frmSelIOBillMat frmX = new frmSelIOBillMat();

            frmX.BClass                  = 1;
            frmX.AppInformation          = AppInformation;
            frmX.UserInformation         = UserInformation;
            frmX.DoSelIOStoreMatBillData = doSelIOStoreMatBillData;
            frmX.ShowDialog();
            frmX.Dispose();
        }
Ejemplo n.º 3
0
        private void btn_SelBNoIn_Click(object sender, EventArgs e)
        {
            frmSelIOBillMat frmX = new frmSelIOBillMat();

            frmX.BClass                  = 1;
            frmX.AppInformation          = AppInformation;
            frmX.UserInformation         = UserInformation;
            frmX.txt_cName.Text          = txt_cMNo.Text;
            frmX.DoSelIOStoreMatBillData = doSelIOStoreMatBillData;
            frmX.ShowDialog();
            frmX.Dispose();
        }
Ejemplo n.º 4
0
        private void btn_SelBNoIn_Click(object sender, EventArgs e)
        {
            frmSelIOBillMat mat = new frmSelIOBillMat {
                BClass          = 1,
                AppInformation  = base.AppInformation,
                UserInformation = base.UserInformation
            };

            mat.txt_cName.Text          = this.txt_cMNo.Text;
            mat.DoSelIOStoreMatBillData = new DoSelIOStoreMatBillDataEvent(this.doSelIOStoreMatBillData);
            mat.ShowDialog();
            mat.Dispose();
        }