Пример #1
0
        private void txtCodItem_Leave(object sender, EventArgs e)
        {
            if (txtCodItem.Text.Trim() != ".  .")
            {
                try
                {
                    DALConexao cx  = new DALConexao(DadosDaConexao.StringDaConexao);
                    BLLAeB     bll = new BLLAeB(cx);

                    DTOAeB modelo = bll.CarregaModeloAeB(txtCodItem.Text);

                    txtCodItem.Text  = modelo.CodAeb.ToString();
                    txtNomeItem.Text = modelo.NomeAeb.ToString();
                    txtFc.Text       = modelo.Fc.ToString();
                    txtUm.Text       = modelo.UmAeb.ToString();

                    btAddIngrediente.Enabled = true;
                    txtQuant.Enabled         = true;

                    txtQuant.Focus();
                }
                catch
                {
                    MessageBox.Show("Código inválido. Por favor selecione um código existente");
                    btAddIngrediente.Enabled = false;
                    txtQuant.Enabled         = false;
                }
            }
        }
Пример #2
0
        private void txtCodItem_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.F5)
            {
                Forms.CMV.frmConsultaAeB f = new Forms.CMV.frmConsultaAeB(true);
                f.ShowDialog();

                if (f.codigo != "")
                {
                    try
                    {
                        DALConexao cx  = new DALConexao(DadosDaConexao.StringDaConexao);
                        BLLAeB     bll = new BLLAeB(cx);

                        DTOAeB modelo = bll.CarregaModeloAeB(f.codigo);

                        txtCodItem.Text          = modelo.CodAeb.ToString();
                        txtNomeItem.Text         = modelo.NomeAeb.ToString();
                        txtFc.Text               = modelo.Fc.ToString();
                        txtUm.Text               = modelo.UmAeb.ToString();
                        txtQuant.Enabled         = true;
                        btAddIngrediente.Enabled = true;

                        txtQuant.Focus();
                    }
                    catch
                    {
                        MessageBox.Show("Código inválido. Por favor selecione um código existente");
                        btAddIngrediente.Enabled = false;
                    }
                }
                else
                {
                }

                f.Dispose();
            }
        }