private void btnNumericKeyboard_Click(object sender, EventArgs e)
        {
            var oForm = new NumericKeyboardForm();

            if (oForm.ShowDialog() == DialogResult.OK)
            {
                txtQty.Text = oForm.Tag as string;
            }
        }
Пример #2
0
        private void btnNumericKeyboard_Click(object sender, EventArgs e)
        {
            var oForm = new NumericKeyboardForm();

            if (oForm.ShowDialog() == DialogResult.OK)
            {
                txtProductCodeOrBarcode.Text = oForm.Tag as string;
                txtProductCodeOrBarcode.Focus();
            }
        }