I have a application I am designing in C# that requries a welcome screen which leads to a login screen. I want the welcome screen to be on display for around 3 seconds before loading the logon page. Is there a timeout function like javascripts setTimeout that I can use to do this?
Asked
Active
Viewed 43 times
0
-
What kind of application? WinForms? WPF? – itsme86 Aug 09 '18 at 14:59
-
2In other words, you want a splash screen. There are several duplicate questions and tutorials that show how to do that – Panagiotis Kanavos Aug 09 '18 at 14:59
-
You probably don't need a logon page either if your database or middle tier uses Windows authentication. The OS already knows who the user is and connects to databases, services as that user – Panagiotis Kanavos Aug 09 '18 at 15:02
-
@itsme86 its a winforms application. – Andy Orchard Aug 09 '18 at 15:05
-
@PanagiotisKanavos its a specification of the course i am doing - the only way i have seen how to do so far uses threading which I havent covered yet so I am reluctant to use without understanding them – Andy Orchard Aug 09 '18 at 15:06