Option?Explicit
Private?Sub?Form_Load()
Label2.Visible?=?False
End?Sub
Private?Sub?Timer1_Timer()
Static?n?As?Integer
n?=?n?+?1
If?n?>?5?Then
Label2.Visible?=?True
Timer1.Enabled?=?False
End?If
End?Sub
Option?Explicit
Private?Sub?Form_Load()
Label2.Visible?=?False
End?Sub
Private?Sub?Timer1_Timer()
Static?n?As?Integer
n?=?n?+?1
If?n?>?5?Then
Label2.Visible?=?True
Timer1.Enabled?=?False
End?If
End?Sub