Hello,
I am trying to build a splash screen for my application. So far I have in my Startup sub:
And the sub:Code:MyThread = New Threading.Thread(AddressOf ShowSplashScreen) MyThread.Name = "Splash Screen" MyThread.Start()
And in the main form load event:Code:Public Sub ShowSplashScreen() Splash = New SplashForm Splash.Show() 'Only when I put MessageBox.Show("Hello") does this form show End Sub
Why is it that the splash form only shows when I show a message box?Code:Splash.Close()
Can anybody tell me what I am doing wrong?




Reply With Quote