Пример #1
0
        private void txtBtnUsu_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.Text = "Pesquisa Cadastro de Usuário";
            x.ShowDialog();
        }
Пример #2
0
        private void txtCodVendedor_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.dtGrdVwVis.DataSource = ListarVendedor();
            x.Text = "Pesquisa Cadastro de Vendedor";

            x.ShowDialog();
        }
Пример #3
0
        private void txtCodTransportadora_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.dtGrdVwVis.DataSource = ListaTransportadora();
            x.Text = "Pesquisa Cadastro de Transportadora";

            x.ShowDialog();
        }
Пример #4
0
        private void txtBtnCodGrp_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.dtGrdVwVis.DataSource = ListarGrupoProduto();
            x.Text = "Pesquisa Cadastro de Grupo de Produtos";

            x.ShowDialog();
        }
Пример #5
0
        private void txtCodProd_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.dtGrdVwVis.DataSource = ListarGrupoProduto();
            x.Text = "Consulta Cadastro de Grupo Produto";

            x.ShowDialog();
        }
Пример #6
0
        private void txtCondPagto_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.dtGrdVwVis.DataSource = ListarCondicaoPagto();
            x.Text = "Pesquisa Cadastro de Condição Pagamento";

            x.ShowDialog();
        }
Пример #7
0
        private void txtNumPed_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.dtGrdVwVis.DataSource = ListarProduto();
            x.Text = "Pesquisa Estoque de Produtos";

            x.ShowDialog();
        }
Пример #8
0
        private void txtNumNF_ButtonClick(object sender, EventArgs e)
        {
            try
            {
                FrmVisGeral x = new FrmVisGeral(this, txtNumNF);
                x.dtGrdVwVis.DataSource = ListaNf();
                x.Text = "Pesquisa Nota Fiscal";

                x.ShowDialog();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Пример #9
0
        public void PesquisaPedido()
        {
            try
            {
                FrmVisGeral x = new FrmVisGeral(this, txtbtnPedido);
                x.dtGrdVwVis.DataSource = ListarPedido();
                x.Text = "Pesquisa Pedido Venda";

                x.ShowDialog();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Пример #10
0
        public void PesquisaPedido()
        {
            try
            {

                FrmVisGeral x = new FrmVisGeral(this, txtbtnPedido);
                x.dtGrdVwVis.DataSource = ListarPedido();
                x.Text = "Pesquisa Pedido Venda";

                x.ShowDialog();
            }
            catch (Exception ex)
            {

                throw ex;
            }
        }
Пример #11
0
        private void txtcodCli_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
            x.dtGrdVwVis.DataSource = ListarCliente();
            x.Text = "Pesquisa Cadastro de Cliente";

            x.ShowDialog();
        }
Пример #12
0
        private void txtBtnCodGrp_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
            x.dtGrdVwVis.DataSource = ListarGrupoProduto();
            x.Text = "Pesquisa Cadastro de Grupo de Produtos";

            x.ShowDialog();
        }
Пример #13
0
        private void txtCodTransportadora_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
            x.dtGrdVwVis.DataSource = ListaTransportadora();
            x.Text = "Pesquisa Cadastro de Transportadora";

            x.ShowDialog();
        }
Пример #14
0
        private void txtCondPagto_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
            x.dtGrdVwVis.DataSource = ListarCondicaoPagto();
            x.Text = "Pesquisa Cadastro de Condição Pagamento";

            x.ShowDialog();
        }
Пример #15
0
 private void txtCodPed_ButtonClick(object sender, EventArgs e)
 {
     FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
     x.ShowDialog();
 }
Пример #16
0
 private void BtnPesquisar_Click(object sender, EventArgs e)
 {
     if (this.ActiveMdiChild != null)
     {
         FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
         x.ShowDialog();
     }
 }
Пример #17
0
        private void txtAreaAtu_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);

            x.ShowDialog();
        }
Пример #18
0
        private void txtNumPed_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
            x.dtGrdVwVis.DataSource = ListarProduto();
            x.Text = "Pesquisa Estoque de Produtos";

            x.ShowDialog();
        }
Пример #19
0
        private void txtCodProd_ButtonClick(object sender, EventArgs e)
        {
            FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
            x.dtGrdVwVis.DataSource = ListarGrupoProduto();
            x.Text = "Consulta Cadastro de Grupo Produto";

            x.ShowDialog();
        }
Пример #20
0
 private void txtUsu_ButtonClick(object sender, EventArgs e)
 {
     FrmVisGeral x = new FrmVisGeral(this, (Control)sender);
     x.Text = "Pesquisa Cadastro de Usuário";
     x.ShowDialog();
 }
        private void txtNumNF_ButtonClick(object sender, EventArgs e)
        {
            try
            {

                FrmVisGeral x = new FrmVisGeral(this, txtNumNF);
                x.dtGrdVwVis.DataSource = ListaNf();
                x.Text = "Pesquisa Nota Fiscal";

                x.ShowDialog();
            }
            catch (Exception ex)
            {

                throw ex;
            }
        }