J jazsriel Member Local time Today, 03:53 Joined Dec 21, 2020 Messages 65 Sep 11, 2021 #1 ... Last edited: Apr 13, 2022
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 17:53 Joined May 7, 2009 Messages 20,704 Sep 11, 2021 #2 Code: Private Sub Form_Timer() Me.Label131.Visible = Not Me.Label131.Visible Me.Label133.Visible = Not Me.Label131.Visible End Sub
Code: Private Sub Form_Timer() Me.Label131.Visible = Not Me.Label131.Visible Me.Label133.Visible = Not Me.Label131.Visible End Sub
cheekybuddha AWF VIP Local time Today, 09:53 Joined Jul 21, 2014 Messages 3,214 Sep 11, 2021 #3 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
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
cheekybuddha AWF VIP Local time Today, 09:53 Joined Jul 21, 2014 Messages 3,214 Sep 11, 2021 #4 Haha! ninja'd by Arnel! d