private void TxtPesquisaOrcamento_TextChanged(object sender, EventArgs e)
 {
     if (txtPesquisaOrcamento.Text != "")
     {
         DataTable dt = OrcamentoDAO.filtrarOrcamentos(txtPesquisaOrcamento.Text);
         if (dt.Rows.Count != 0)
         {
             dgvRelatorioFaturamento.DataSource = dt;
         }
     }
     else
     {
         this.exibirOrcamentos();
     }
 }