Generally, when we show a splash screen, we show it programmatically through one of the methods within AppMain. You can use InitApplication() or ShowLoginAndInitMainForm, either works just fine. Basically, you just need some code like this:Dim loSplash As New MySplashForm()
loSplash.Show()
System.Threading.Thread.Sleep(3000) '-- show the splash screen for 3 seconds
loSplash.Close()
loSplash.Dispose()