Tema: Objeto timer
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/03/2008, 07:44
guif
 
Fecha de Ingreso: julio-2005
Mensajes: 140
Antigüedad: 18 años, 10 meses
Puntos: 0
Re: Objeto timer

me lio un poco... os cuento como lo tengo:

Código:
Private Sub Funcion_update()
    Timer1.Enabled = True
End Sub
Código:
Private Sub actualitza_Click()
(realizo una serie de consultas SQL)
End Sub
Código:
Private Sub Timer1_Timer()
    actualitza_Click
End Sub
Entonces, al dar al boton actualitza_Click, donde tendria que poner el codigo que comentas para que me actualize cada 10 minutos???

gracias!