Realizar un tarea después de 10min. Automaticament
Revise este ejemplo http://www.recursosvisualbasic.com.ar/htm/tutoriales/control_timer.htm#7
Pero tiene in limite de 5 minutos es posible solucionar esto, como lo hago quizás algún ocx que conozcan.
Option Explicit
Const INTERVALO_EN_MINUTOS As Integer = 3 ' tiempo en minutos
Private Sub Form_Load()
Timer1.Interval = 1000
End Sub
Private Sub Timer1_Timer()
Static Temp_Seg As Long
Temp_Seg = Temp_Seg + 1
If (Temp_Seg * 60) >= (INTERVALO_EN_MINUTOS * 60) * 60 Then
Temp_Seg = 0
Form2.Show
End If
End Sub
Pero tiene in limite de 5 minutos es posible solucionar esto, como lo hago quizás algún ocx que conozcan.
Option Explicit
Const INTERVALO_EN_MINUTOS As Integer = 3 ' tiempo en minutos
Private Sub Form_Load()
Timer1.Interval = 1000
End Sub
Private Sub Timer1_Timer()
Static Temp_Seg As Long
Temp_Seg = Temp_Seg + 1
If (Temp_Seg * 60) >= (INTERVALO_EN_MINUTOS * 60) * 60 Then
Temp_Seg = 0
Form2.Show
End If
End Sub
1 Respuesta
Respuesta de juanpabl0
1