ok I've made a splash screen and wanted to keep it on the screen for 3-5 seconds before loading my very simple, but functional web browser, so here's my code, any reasons why it doesn't open the other form?
Code:Private Sub loadTimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles loadTimer.Tick Dim m_time As Integer = 0 'times splash screen till loads web browser m_time += 1 If m_time = 3 Then Dim ofrm As New FrmWebBrowser() ofrm.ShowDialog() End If End Sub




Reply With Quote