public DataTable ExibirDados1()
        {
            try
            {
                DataTable DataT = new DataTable();
                dal = new PesquisarFilmes1();

                DataT = dal.ExibirDados1();
                return(DataT);
            }
            catch (Exception erro)
            {
                throw erro;
            }
        }
Exemple #2
0
        private void BtnPesquisar_Click(object sender, EventArgs e)
        {
            PesquisarFilmes1 gen = new PesquisarFilmes1();

            try
            {
                exibirFilmes.DataSource = gen.ExibirDados1();
            }
            catch (Exception erro)
            {
                MessageBox.Show("Erro ao exibir dados" + erro);
            }

            tituloFilmes.Enabled  = true;
            duracaoFilmes.Enabled = true;
            anoFilmes.Enabled     = true;
            idProdFilmes.Enabled  = true;
            idClassFilmes.Enabled = true;
            idDirFilmes.Enabled   = true;
            idGenFilmes.Enabled   = true;
        }