JomarMark Tamargo

JomarMark Tamargo

  • NA
  • 27
  • 9.2k

Splash Screen With MDI Form

Jan 17 2016 3:48 AM
 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);
}
}

Answers (3)