Hi i am using visual studio 05 and have created a splash screen but i want to set it to a timer. I also have a progress bar so i want that to count up to what the timer is.

Here is my splash screen code :

Code:
Public NotInheritable Class splash

    Private Sub splash_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load, ApplicationTitle.Click
        Timer1.Enabled = True
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

        If progress.Value <> progress.Maximum Then
            progress.Value = (progress.Value + 20)
        End If

    End Sub

End Class
Thanks heaps guys

Cheers