 
			
				14/05/2010, 15:50
			
			
			     |  
        |     |    |    Fecha de Ingreso: noviembre-2009  
						Mensajes: 701
					  Antigüedad: 16 años Puntos: 53     |        |  
  |      Respuesta: ejecutar aplicacion con retraso        Mira kraquem, si necesitas un contador, yo pondría un label1 con letras grandes, un Timer1 con Interval = 1000 (1 segundo) y este código    Private Sub Timer1_Timer() 
  Static Segundos As Integer 
  Segundos = Segundos + 1 
  Label1 = Format(50 - Segundos, "00") 
  DoEvents 
  If Segundos = 50 Then 
    Shell "C:\Windows\Notepad.exe", vbMaximizedFocus 
    End 
  End If 
End Sub   
Así funciona. Garantizado.     
				__________________  Agradecer a quien te enseñó, es enseñar lo que de él aprendiste.   Recuerda: Decir gracias, poco cuesta y mucho vale ...             |