I have the following code to show one for two labels depending upon if the amounts are balance or not. I would like to be able to have Label8 flash if it is visbile to draw the user's attention to it if it is not balanced.

If TextBox57.Value = "$0.00" Then Label7.Visible = True Else: Label7.Visible = False
If TextBox57.Value <> "$0.00" Then Label8.Visible = True Else: Label8.Visible = False