Hi; I have a timer that executes my start button every 15 minutes which works fine but now I want the labels to refresh at the same time. Iâve played around a bit but and did search other posts but canât seem to get it right, hereâs what Iâve got.
Code:
Private Sub tmrMinute_Timer()
MinCount = MinCount + 1
Label1.Caption = MinCount
If (MinCount = 15) Then
Call cmdstart_Click
MinCount = 0
End If
lblMsgA.Refresh
lblMsgB.Refresh
lblMsgC.Refresh
lblMsgD.Refresh
End Sub