Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/05/2010, 15:13
Avatar de lokoman
lokoman
 
Fecha de Ingreso: septiembre-2009
Mensajes: 502
Antigüedad: 14 años, 7 meses
Puntos: 47
Respuesta: ejecutar aplicacion con retraso

Hola!!
Pon un Timer e intenta este codigo:

Public TiempoLimite As String

Private Sub Form_Load()
TiempoLimite = TimeValue(Time) + TimeValue("0:01")
End Sub

Private Sub Timer1_Timer()
If TimeValue(Time) = TiempoLimite Then
MsgBox "Ha pasado un minuto"
End If
End Sub