VB Code:
  1. Private Sub Form_Load()
  2.     Label1.Caption = "NAVI's TEXT"
  3.     With Timer1
  4.         .Interval = 500
  5.         .Enabled = True
  6.     End With
  7. End Sub
  8.  
  9. Private Sub Timer1_Timer()
  10.     Label1.Visible = Not Label1.Visible
  11. End Sub