guarda io ho ftt cosi
nuovo form con un textbox con le seguenti opzioni:
-enabled=false
-text=10
e poi un timer con le seguenti opzioni
interval = 1000(un sec)

e poi qst codice

codice:
Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Enabled = True
    End Sub

    Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        TextBox1.Text -= 1
        If TextBox1.Text = "0" Then
            Me.Close()
        End If
    End Sub
End Class
vedi se è di tuo gradimento se è cosi poi ti spiego il significato