Exemplo n.º 1
0
        private void btnPesquisar_Click(object sender, EventArgs e)
        {
            backgroundWorker.RunWorkerAsync();

            telaProgresso = new TelaProgresso("Carregando dados. Aguarde.", ProgressBarStyle.Marquee, ref backgroundWorker);
            telaProgresso.ShowDialog();
        }
Exemplo n.º 2
0
 private void abreTelaProgresso()
 {
     telaProgresso = new TelaProgresso("Carregando movimentação de estoque. Aguarde.", ProgressBarStyle.Marquee, ref backgroundWorker);
     telaProgresso.ShowDialog();
 }
Exemplo n.º 3
0
 private void abreTelaProgresso(String msg)
 {
     telaProgresso = new TelaProgresso(msg, ProgressBarStyle.Marquee, ref backgroundWorker);
     telaProgresso.ShowDialog();
 }