Private Sub Form_Timer()

'    Make myText Flash
 
If Me.MyText.Visible = True Then
    Me.MyText.Visible = False
Else
    Me.MyText.Visible = True
End If
End Sub