You say "Textbox" .... I assume you mean the "Caption" on the top of the form ....
Place the following code in the Form's "On Timer" event:
Private Sub Form_Timer()
If Me.Caption <> " " Then
Me.Caption = " "
Else
Me.Caption = "Place Your Form Caption Here"
End If
End Sub
Change "Place...