Hi
Am working on a project and this time i want the use
to choose whether or not to show the splash screen.
If the user choose NOT to show a NO is registered in a hidden XML file
which tell the program not to show the splash screen when next running...
...using
If strGetStatus = "Yes" Then
frmSplashScreen.Show()
frmMainMenu.helHideWelcomeScreen.Text = "Hide Welcome screen"
Else
frmLogin.Show()
frmMainMenu.helHideWelcomeScreen.Text = "Show Welcome screen"
End If
But since i have selected frmSplashScreen as my startup form
it still show even if the user doesn't want it to.
NB: In other words how do i disable/able splash screen in a project?