i would like to pause and show my splash screen for few moments when the program loads.
How can i do it in vb.net winforms…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Quick and dirty solution:
Thread.Sleep(note that no UI updates will be done during that time, so if your user clicks somewhere, your splash screen might look ugly).Nice solution:
User-friendly solution:
Note that splash screens usually serve a purpose: They entertain the user while some work is being done by the program. If your program does not need to do initial work, the splash screen is just annoying because it wastes the user’s time.