14/05/2010, 15:13
|
| | | Fecha de Ingreso: septiembre-2009
Mensajes: 502
Antigüedad: 15 años, 1 mes 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 |