Пример #1
0
        private void unidadeDeMedidaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmCadastrounidadeDeMedida f = new frmCadastrounidadeDeMedida();

            f.ShowDialog();
            f.Dispose();
        }
        private void btAddUnidadeMedida_Click(object sender, EventArgs e)
        {
            frmCadastrounidadeDeMedida f = new frmCadastrounidadeDeMedida();

            f.ShowDialog();
            f.Dispose();
            DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao);
            //combo und medida
            BLLUnidadeDeMedida ubll = new BLLUnidadeDeMedida(cx);

            cbUnd.DataSource    = ubll.Localizar("");
            cbUnd.DisplayMember = "umed_nome";
            cbUnd.ValueMember   = "umed_cod";
        }
Пример #3
0
        private void btAddUnMed_Click(object sender, EventArgs e)
        {
            frmCadastrounidadeDeMedida f = new frmCadastrounidadeDeMedida();

            f.ShowDialog();
            f.Dispose();

            //--------------------------------------------------------------------------------------------------
            // Carragar o combobox das unidades de medida
            //--------------------------------------------------------------------------------------------------
            //combo und medida aula 33  https://youtu.be/TUke-tVYFcw?list=PLfvOpw8k80Wqj1a66Qsjh8jj4hlkzKSjA&t=924
            DALConexao         cx   = new DALConexao(DadosDaConexao.StringDeConexao);//criar conexão
            BLLUnidadeDeMedida ubll = new BLLUnidadeDeMedida(cx);

            cbUnd.DataSource    = ubll.Localizar("");
            cbUnd.DisplayMember = "umed_nome"; //mostrar o nome (Indicar qual coluna é exibida para selecionar)
            cbUnd.ValueMember   = "umed_cod";  //armazena o codigo do item selecionado
        }
 private void unidadeDeMedidaToolStripMenuItem_Click(object sender, EventArgs e)
 {
     frmCadastrounidadeDeMedida f = new frmCadastrounidadeDeMedida();
     f.ShowDialog();
     f.Dispose();
 }
        private void unidadeDeMedidaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmCadastrounidadeDeMedida f = new frmCadastrounidadeDeMedida();

            CheckMdiChildren(f);
        }