Exemplo n.º 1
0
        private void Form1_Load(object sender, EventArgs e)
        {
            Config = Configurações.BuscarConfig();
            if (!Configurações.IsConfigurado())
            {
                ChamaConfig();
                timer = 0;
            }

            InicializaBanco();
            SetaLabel(timer);
            Atualiza.Start();

            this.Hide();
        }
Exemplo n.º 2
0
 private void Atualiza_Tick(object sender, EventArgs e)
 {
     contador = int.Parse(LabelTimer.Text);
     Atualiza.Stop();
     if (contador > 0)
     {
         contador--;
         SetaLabel(contador);
     }
     else
     {
         if (!Processador.IsBusy)
         {
             Processador.RunWorkerAsync();
             AtualizaGrig();
         }
         SetaLabel(timer);
     }
     Atualiza.Start();
 }