use el timer y dos label para este ejemplo.
timer
- interval = 1000
label1
- caption= vacio
label2
- caption = 0
Código PHP:
Private Sub Timer1_Timer()
propiedades del label2 caption = 0
y = Label2.Caption
x = y + 1
Label2.Caption = x
If x < 20 Then
If Label1.Caption = "" Then
Label1.Caption = "Hola "
Else: Label1.Caption = ""
End If
End If
End Sub