Just a quick note. You can shorten that timer code with this:
VB Code:
  1. Private Sub Timer1_Timer()
  2. Label1.Visible = Not Label1.Visible
  3. End Sub

It really doesn't matter which way you do it, but I just wanted to point out that there was a shorter way.