예제 #1
0
        private void bairroToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            frmConsultaBairro f = new frmConsultaBairro();

            f.ShowDialog();
            f.Dispose();
        }
예제 #2
0
        private void btLocalizar_Click(object sender, EventArgs e)
        {
            frmConsultaBairro f = new frmConsultaBairro();

            f.ShowDialog();
            if (f.codigo != 0)
            {
                DALConexao   cx     = new DALConexao(DadosDaConexao.StringDeConexao);
                BLLBairro    bll    = new BLLBairro(cx);
                ModeloBairro modelo = bll.CarregaModeloBairro(f.codigo);
                txtCodigo.Text    = modelo.IDBairro.ToString();
                txtNome.Text      = modelo.NomeBairro;
                txtDescricao.Text = modelo.DescricaoBairro;
                alteraBotoes(3);
            }
            else
            {
                this.LimpaTela();
                this.alteraBotoes(1);
            }
            f.Dispose();
        }