Ejemplo n.º 1
0
        private void BtnSelectPartType_Click(object sender, EventArgs e)
        {
            FrmSelectPart frmSelectPart = new FrmSelectPart();

            frmSelectPart.ShowDialog();
            txtPartTypeName.Text = frmSelectPart.partName;
            txtPartTypeCode.Text = frmSelectPart.partCode;
        }
Ejemplo n.º 2
0
        private void BtnSelectPart_Click(object sender, EventArgs e)
        {
            FrmSelectPart frmSelectPart = new FrmSelectPart();

            frmSelectPart.ShowDialog();

            labName.Text            = frmSelectPart.partName;
            labCode.Text            = frmSelectPart.partCode;
            labMeasurementUnit.Text = frmSelectPart.measurementUnit;
        }