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(); }
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(); }
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(); }
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(); }