
08/05/2003, 17:52
|
| | Fecha de Ingreso: febrero-2003 Ubicación: Costa Rica
Mensajes: 133
Antigüedad: 22 años, 1 mes Puntos: 0 | |
Digo:
Private Sub Command1_Click()
Dim TotalMinutos As Integer
Timer1.Enabled = True
Timer1.Interval = 10000
'aqui lo tuyo...
End Sub
Private Sub Timer1_Timer()
TotalMinutos = TotalMinutos + 1
End Sub
asi.... |