stealth998
Programmer
I'm somewhat new to VB.net. I've coded a splash screen and it runs fine, but I'd like to know if there's any way I can hide the main form while the splash screen is going. Any help would be appreciated!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Module Module1
Friend MF As MainForm
Sub Main()
MF = New MainForm()
Dim SF As New SplashForm
SF.ShowDialog()
MF.ShowDialog()
End Sub
End Module
MF.LoadClients()
MF.LoadMoreData()
MF.DrawSomeThings()
Me.Dispose()