I am just trying to yous splash screen with time interval at least 50 seconds or more than or less than.
any advise on the code or additional information?
Code below:
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
LoadingScreen Splash = new LoadingScreen();
Splash.ShowDialog();
MPDSMain MDI = new MPDSMain();
Application.Run(MDI);
}
}