...

jazsriel

Member
Local time
Today, 03:53
Joined
Dec 21, 2020
Messages
65
...
 
Last edited:
Code:
Private Sub Form_Timer()
Me.Label131.Visible = Not Me.Label131.Visible
Me.Label133.Visible = Not Me.Label131.Visible
End Sub
 
Thanks for posting your solution. 👍

You can probably reduce code (at the cost of easy understanding):
Code:
Private Sub Form_Timer()

  With Me
    .Label131.Visible = Not .Label131.Visible
    .Label133.Visible = Not .Label131.Visible
  End If
 
End Sub
 

Users who are viewing this thread

Back
Top Bottom