Hide/Show Form with timer
Hide/Show Form with timer
Rate Hide/Show Form with timer
(1(1 Vote))
' That value for duration 1000 = 1 second
Timer1.Interval = 1000
End Sub
Private Sub Timer1_Timer()
If Me.Visible = True Then
Me.Visible = False
Else
Me.Visible = True
End If
End Sub
Hide/Show Form with timer Comments
No comments yet — be the first to post one!
Post a Comment