private void timer1_Tick(object sender, EventArgs e) { if (GlobalFunctions.verificarSesion(Globals.IdUsername)) { this.Close(); } int n = GlobalFunctions.pendienteConfirmarRecepcion(); if (n == 0) { lbEstado.Text = "No tiene documentos por confirmar recepcion"; lbEstado.ForeColor = Color.Gainsboro; } else if (n > 0) { lbEstado.Text = "Tiene " + n.ToString() + " documentos por confirmar recepcion"; lbEstado.ForeColor = Color.Red; } else { timer1.Enabled = false; } }